Skip to content

Commit

Permalink
Merge pull request #5 from saltgz/master
Browse files Browse the repository at this point in the history
fixed bug for old version of (your) pyhal interface...
  • Loading branch information
sirfoga committed Nov 27, 2018
2 parents a9dd792 + c474521 commit 68925ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pygce/models/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from datetime import timedelta

from bs4 import BeautifulSoup
from hal.internet.selenium_bots import SeleniumForm
from hal.internet.selenium import SeleniumFormFiller
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
Expand Down Expand Up @@ -117,7 +117,7 @@ def login(self):

try:
self._go_to(self.login_url) # open login url
SeleniumForm(self.browser).fill_login_form(
SeleniumFormFiller(self.browser).fill_login_form(
self.user_name, self.USERNAME_FIELD_NAME,
self.user_password, self.PASSWORD_FIELD_NAME
) # fill login form
Expand Down

0 comments on commit 68925ce

Please sign in to comment.