This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some flaw in python code due to which things are intercepted only after clicking twice / two requests | |
def get_intercepted_header(page): | |
global intercepted_header | |
global intercepted_auth_token | |
# URL that is called in the request | |
page.route("**/customeraccounts", handle) | |
# Click the link which sends out a request | |
page.get_by_text("Check Balance").click() | |
# page.route("**/*", handle) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ENVELOPE> | |
<HEADER> | |
<TALLYREQUEST>Export Data</TALLYREQUEST> | |
</HEADER> | |
<BODY> | |
<EXPORTDATA> | |
<REQUESTDESC> | |
<REPORTNAME>List of Accounts</REPORTNAME> | |
<STATICVARIABLES> | |
<SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT> |