Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Dec 19, 2022. It is now read-only.

Commit bc64eb9

Browse files
author
Baiju Muthukadan
committed
search pycon instead of selenium
1 parent 8406736 commit bc64eb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/getting-started.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ from Python like this.
1818
driver.get("http://www.python.org")
1919
assert "Python" in driver.title
2020
elem = driver.find_element_by_name("q")
21-
elem.send_keys("selenium")
21+
elem.send_keys("pycon")
2222
elem.send_keys(Keys.RETURN)
2323
driver.close()
2424

@@ -74,7 +74,7 @@ Next we are sending keys, this is similar to entering keys using your
7474
keyboard. Special keys can be send using `Keys` class imported from
7575
`selenium.webdriver.common.keys`::
7676

77-
elem.send_keys("selenium")
77+
elem.send_keys("pycon")
7878
elem.send_keys(Keys.RETURN)
7979

8080
After submission of the page, you should get the result if there is any::
@@ -113,7 +113,7 @@ for `python.org` search functionality::
113113
driver.get("http://www.python.org")
114114
self.assertIn("Python", driver.title)
115115
elem = driver.find_element_by_name("q")
116-
elem.send_keys("selenium")
116+
elem.send_keys("pycon")
117117
elem.send_keys(Keys.RETURN)
118118

119119
def tearDown(self):
@@ -204,7 +204,7 @@ Next we are sending keys, this is similar to entering keys using your
204204
keyboard. Special keys can be send using `Keys` class imported from
205205
`selenium.webdriver.common.keys`::
206206

207-
elem.send_keys("selenium")
207+
elem.send_keys("pycon")
208208
elem.send_keys(Keys.RETURN)
209209

210210
After submission of the page, you should get result as per search if

0 commit comments

Comments
 (0)