Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpunkt committed Jul 3, 2020
1 parent 36a2be2 commit b487bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocklenium/selenium_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def desk_login(self):
pwdfields = self.chromedriver.find_elements_by_css_selector(
"input[id*='Password']")

if (len(userfields) > 0) and (len(pwdfields > 0)):
if (len(userfields) > 0) and (len(pwdfields) > 0):
userfields[0].send_keys(self.desk_username)
pwdfields[0].send_keys(self.desk_password)

Expand Down

0 comments on commit b487bb6

Please sign in to comment.