Skip to content

Commit ff953a4

Browse files
committed
Some updates to the readme
"the the" removed. Some formatting fixes; some lists were output on one line. Etc
1 parent 0295f7b commit ff953a4

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -169,27 +169,27 @@ $element->element($using, $value);
169169
$element->elements($using, $value);
170170
```
171171

172-
$using is the the location method either as a string value
173-
* id
174-
* xpath
175-
* link text
176-
* partial link text
177-
* name
178-
* tag name
179-
* class name
180-
* css selector
181-
182-
or by a const defined in WebDriverBy.php. The advantage to this is that you will know much faster (as in compile time) whether you have fat-fingered something.
183-
* ID
184-
* XPATH
185-
* LINK_TEXT
186-
* PARTIAL_LINK_TEXT
187-
* NAME
188-
* TAG_NAME
189-
* CLASS_NAME
190-
* CSS_SELECTOR
191-
192-
In other words, the following are equivilant
172+
`$using` is the location method either as a string value like the following:
173+
* id
174+
* xpath
175+
* link text
176+
* partial link text
177+
* name
178+
* tag name
179+
* class name
180+
* css selector
181+
182+
or by a const defined in WebDriverBy.php (see below). The advantage to this is that you will know much faster (as in compile time) whether you have fat-fingered something.
183+
* `ID`
184+
* `XPATH`
185+
* `LINK_TEXT`
186+
* `PARTIAL_LINK_TEXT`
187+
* `NAME`
188+
* `TAG_NAME`
189+
* `CLASS_NAME`
190+
* `CSS_SELECTOR`
191+
192+
In other words, the following are equivilant:
193193

194194
```php
195195
// POST /session/:sessionId/element

0 commit comments

Comments
 (0)