File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
seleniumbase/console_scripts Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def main():
91
91
print ('\n Locating the latest version of Chromedriver...' )
92
92
latest_version = requests .get (last ).text
93
93
if not requests .get (download_url ).ok :
94
- fallback_version = "2.40 "
94
+ fallback_version = "2.44 "
95
95
download_url = ("http://chromedriver.storage.googleapis.com/"
96
96
"%s/%s" % (fallback_version , file_name ))
97
97
else :
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ def main():
81
81
data .append (" def test_basic(self):" )
82
82
data .append (' self.open("https://xkcd.com/353/")' )
83
83
data .append (" self.assert_element('img[alt=\" Python\" ]')" )
84
+ data .append (' self.assert_title("xkcd: Python")' )
84
85
data .append (" self.click('a[rel=\" license\" ]')" )
85
86
data .append (' self.assert_text("free to copy and reuse")' )
86
87
data .append (' self.go_back()' )
You can’t perform that action at this time.
0 commit comments