Beispiel #1
0
    def page_url(self) -> str:
        params = {
            'SPTN': self._s.get_sptn(),
            'WCI': 'DdaDetail',
            'Number': self.account.acct_session_id
        }

        return add_query_params(BASE_URL, params)
Beispiel #2
0
    def recent_trans_ajax_url(self) -> str:
        query_params = {
            "WCI": "AJAX",
            "WCE": "GetData",
            "Request": "Trans",
            "SPTN": self.sptn,
            "GUID": self.txt_guid,
            "Cycle": "01",
            "NumOfTrans": "-1",
            "id": 12345  # just a random number
        }

        return add_query_params(BASE_URL, query_params)