Skip to content

Commit

Permalink
Merge pull request kubernetes#313 from MarkDeckert/issue-311-selenium
Browse files Browse the repository at this point in the history
driver.close() should be driver.quit()
  • Loading branch information
sebgoa authored May 11, 2019
2 parents a434a91 + d804fa7 commit c4cfecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion staging/selenium/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def check_browser(browser):
)
driver.get("http://google.com")
assert "google" in driver.page_source
driver.close()
driver.quit()
print("Browser %s checks out!" % browser)


Expand Down
2 changes: 1 addition & 1 deletion staging/selenium/selenium-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def check_browser(browser):
)
driver.get("http://google.com")
assert "google" in driver.page_source
driver.close()
driver.quit()
print("Browser %s checks out!" % browser)


Expand Down

0 comments on commit c4cfecb

Please sign in to comment.