Skip to content

Commit

Permalink
Change test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
antonengelhardt committed Mar 30, 2024
1 parent 1fe2324 commit 093fb72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ def test_success() -> None:

# print body

assert driver.get_page_source() == "Bound to fail but debug the body"
assert driver.current_url() == "https://httpbin.org"
# assert driver.get_page_source() == "Bound to fail but debug the body"
# assert driver.current_url() == "https://httpbin.org"
assert driver.title == "httpbin.org"
assert driver.get_cookie("oidcSession-0") is not None
tear_down()
Expand All @@ -98,7 +98,7 @@ def test_modified_cookie() -> None:
set_up()
login(driver)

driver.manage().deleteAllCookies()
driver.deleteAllCookies()
driver.get(BASE_URL)
assert driver.title != "httpbin.org"
tear_down()
Expand Down

0 comments on commit 093fb72

Please sign in to comment.