We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e68e92 commit 75dbcd7Copy full SHA for 75dbcd7
selenium_docs2(navigating).py
@@ -0,0 +1,11 @@
1
+from selenium.webdriver.support.ui import Select
2
+from selenium import webdriver
3
+
4
+driver = webdriver.Chrome(executable_path=r"C:\Users\user\Downloads\chromedriver.exe")
5
+driver.get("https://www.twitter.com")
6
+select = Select(driver.find_element_by_name('name'))
7
+# select.select_by_index(index)
8
+select.select_by_visible_text("text")
9
+# select.select_by_value(value)
10
11
+ #NEEDS MORE TO CONFIRM THIS TOPIC
0 commit comments