Skip to content

Commit

Permalink
readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
filipcynarski committed Mar 31, 2016
1 parent 785627f commit bae7309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ If you need to access to the name, the id, the value, the tagname or the visible

```java
findFirst(myCssSelector).getName()
findFirst(myCssSelector).getId()
findFirst(By.cssSelector(".foo")).getId()
findFirst(myCssSelector).getValue()
findFirst(myCssSelector).getTagName()
findFirst(myCssSelector).getText()
Expand All @@ -214,7 +214,7 @@ findFirst(myCssSelector).getAttribute("myCustomAttribute")
You can also access a list of all the names, visible text, and ids of a list of elements:
```java
find(myCssSelector).getNames()
find(myCssSelector).getIds()
find(By.id("foo")).getIds()
find(myCssSelector).getValues()
find(myCssSelector).getAttributes("myCustomAttribute")
find(myCssSelector).getTexts()
Expand Down

0 comments on commit bae7309

Please sign in to comment.