Skip to content

Commit

Permalink
py: fix typo in webdriver.py. fix #850
Browse files Browse the repository at this point in the history
  • Loading branch information
ddavison committed Jul 30, 2015
1 parent 4d972c0 commit 6ccaf7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/selenium/webdriver/remote/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def find_elements_by_id(self, id_):
- id\_ - The id of the elements to be found.
:Usage:
driver.find_element_by_id('foo')
driver.find_elements_by_id('foo')
"""
return self.find_elements(by=By.ID, value=id_)

Expand Down

0 comments on commit 6ccaf7f

Please sign in to comment.