Rename BaseBrowser to Browser
This commit is contained in:
parent
444d36eee8
commit
0088013ae1
132 changed files with 348 additions and 348 deletions
|
|
@ -17,7 +17,7 @@
|
|||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with weboob. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from weboob.tools.browser import BaseBrowser, BrowserIncorrectPassword
|
||||
from weboob.tools.browser import Browser, BrowserIncorrectPassword
|
||||
|
||||
from .pages import LoginPage, AccountsPage, ITransactionsPage, TransactionsPage, ComingTransactionsPage, CardTransactionsPage
|
||||
|
||||
|
|
@ -25,7 +25,7 @@ from .pages import LoginPage, AccountsPage, ITransactionsPage, TransactionsPage,
|
|||
__all__ = ['CreditCooperatif']
|
||||
|
||||
|
||||
class CreditCooperatif(BaseBrowser):
|
||||
class CreditCooperatif(Browser):
|
||||
PROTOCOL = 'https'
|
||||
ENCODING = 'iso-8859-15'
|
||||
DOMAIN = "www.coopanet.com"
|
||||
|
|
@ -40,7 +40,7 @@ class CreditCooperatif(BaseBrowser):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
self.strong_auth = kwargs.pop('strong_auth', False)
|
||||
BaseBrowser.__init__(self, *args, **kwargs)
|
||||
Browser.__init__(self, *args, **kwargs)
|
||||
|
||||
def home(self):
|
||||
self.location("/banque/sso/")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue