We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddcfccf commit 75ee69eCopy full SHA for 75ee69e
chromedriver_version.py
@@ -6,7 +6,7 @@
6
url = "https://chromedriver.chromium.org/downloads"
7
html = urlopen(url)
8
bs = BeautifulSoup(html, "html.parser")
9
-versions = bs.findAll("strong")
+versions = bs.findAll("span")
10
11
12
# Add each scraped element to a list
@@ -23,4 +23,4 @@
23
24
# Print versions to console if script is run directly
25
if __name__ == "__main__":
26
- print(chromedriver_versions)
+ print(chromedriver_versions)
0 commit comments