Exemple #1
0
    def click_confirm(self):
        self.data.update({"ACT_ACBS_do_CRDT_CNCL_CONF": ''})

        html = _post(session=self._session, url=BASE_URL, data=self.data)
        return html
Exemple #2
0
    def click_next(self):
        self.data.update({"ACT_ACBS_do_CRDT_CHRG_PWD_AUTH": '次へ'})

        html = _post(session=self._session, url=BASE_URL, data=self.data)
        return html
Exemple #3
0
    def click_next(self):
        self.data.update({"ACT_ACBS_do_CRDT_CNCL_INPUT": '解約確認画面へ'})

        html = _post(session=self._session, url=BASE_URL, data=self.data)
        return html
Exemple #4
0
 def click_submit(self):
     html = _post(session=self._session,
                  url=self.__class__.URL,
                  data=self.data)
     return html