Skip to content

Commit 6ccaf7f

Browse files
committed
py: fix typo in webdriver.py. fix #850
1 parent 4d972c0 commit 6ccaf7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/remote/webdriver.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def find_elements_by_id(self, id_):
236236
- id\_ - The id of the elements to be found.
237237
238238
:Usage:
239-
driver.find_element_by_id('foo')
239+
driver.find_elements_by_id('foo')
240240
"""
241241
return self.find_elements(by=By.ID, value=id_)
242242

0 commit comments

Comments
 (0)