File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ class SeleniumLibrary(DynamicCore):
185185 Selenium's WebElement objects. This requires first getting a WebElement,
186186 for example, by using the `Get WebElement` keyword.
187187
188- | ${elem} = | `Get WebElement` | id= example |
188+ | ${elem} = | `Get WebElement` | id: example |
189189 | `Click Element` | ${elem} | |
190190
191191 == Custom locators ==
Original file line number Diff line number Diff line change 2424
2525class ElementKeywords (LibraryComponent ):
2626
27- @keyword
27+ @keyword ( name = 'Get WebElement' )
2828 def get_webelement (self , locator ):
2929 """Returns the first WebElement matching the given ``locator``.
3030
@@ -33,7 +33,7 @@ def get_webelement(self, locator):
3333 """
3434 return self .find_element (locator )
3535
36- @keyword
36+ @keyword ( name = 'Get WebElements' )
3737 def get_webelements (self , locator ):
3838 """Returns list of WebElement objects matching the ``locator``.
3939
You can’t perform that action at this time.
0 commit comments