Skip to content

Commit

Permalink
Changed the css selector for login button
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwik-g committed Jan 31, 2025
1 parent 2cd421e commit 131a3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/test_login.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_login(self):
self.driver.implicitly_wait(0.5)
self.driver.set_window_size(960, 615)
# 3 | click | css=span |
self.driver.find_element(By.CSS_SELECTOR, "span").click()
self.driver.find_element(By.CSS_SELECTOR, "button").click()
# 4 | click | id=username |
self.driver.find_element(By.ID, "username").click()
# 5 | type | id=username | unstract
Expand Down

0 comments on commit 131a3ba

Please sign in to comment.