Skip to content

Commit 6b54038

Browse files
committed
Update SeleniumBase console scripts
1 parent 306902b commit 6b54038

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

seleniumbase/console_scripts/sb_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def main():
9191
print('\nLocating the latest version of Chromedriver...')
9292
latest_version = requests.get(last).text
9393
if not requests.get(download_url).ok:
94-
fallback_version = "2.40"
94+
fallback_version = "2.44"
9595
download_url = ("http://chromedriver.storage.googleapis.com/"
9696
"%s/%s" % (fallback_version, file_name))
9797
else:

seleniumbase/console_scripts/sb_mkdir.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def main():
8181
data.append(" def test_basic(self):")
8282
data.append(' self.open("https://xkcd.com/353/")')
8383
data.append(" self.assert_element('img[alt=\"Python\"]')")
84+
data.append(' self.assert_title("xkcd: Python")')
8485
data.append(" self.click('a[rel=\"license\"]')")
8586
data.append(' self.assert_text("free to copy and reuse")')
8687
data.append(' self.go_back()')

0 commit comments

Comments
 (0)