@@ -13,9 +13,9 @@ Please check them before writing complex functional or acceptance tests.
1313
1414
1515
16- combine
17- * static*
16+ ### combine
1817
18+ * static*
1919
2020Applies OR operator to any number of CSS or XPath selectors.
2121You can mix up CSS and XPath selectors here.
@@ -53,9 +53,9 @@ As a result the Locator will produce a mixed XPath value that will be used in fi
5353
5454[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L46 )
5555
56- contains
57- * static*
56+ ### contains
5857
58+ * static*
5959
6060Locates an element containing a text inside.
6161Either CSS or XPath locator can be passed, however they will be converted to XPath.
@@ -73,9 +73,9 @@ Locator::contains('div[ * `contenteditable=true]',` 'hello world');
7373
7474[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L199 )
7575
76- elementAt
77- * static*
76+ ### elementAt
7877
78+ * static*
7979
8080Locates element at position.
8181Either CSS or XPath locator can be passed as locator,
@@ -96,9 +96,9 @@ Locator::elementAt('table#grind>tr', -2); // previous than last row
9696
9797[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L221 )
9898
99- find
100- * static*
99+ ### find
101100
101+ * static*
102102
103103Finds element by it's attribute(s)
104104
@@ -111,9 +111,9 @@ Finds element by it's attribute(s)
111111
112112[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L137 )
113113
114- firstElement
115- * static*
114+ ### firstElement
116115
116+ * static*
117117
118118Locates first element of group elements.
119119Either CSS or XPath locator can be passed as locator,
@@ -130,9 +130,9 @@ Locator::firstElement('//table/tr');
130130
131131[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L247 )
132132
133- href
134- * static*
133+ ### href
135134
135+ * static*
136136
137137Matches the * a* element with given URL
138138
@@ -152,9 +152,9 @@ $I->see('Log In', Locator::href('/login.php'));
152152
153153[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L73 )
154154
155- humanReadableString
156- * static*
155+ ### humanReadableString
157156
157+ * static*
158158
159159Transforms strict locator, \Facebook\WebDriver\WebDriverBy into a string represenation
160160
@@ -163,27 +163,27 @@ Transforms strict locator, \Facebook\WebDriver\WebDriverBy into a string represe
163163
164164[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L275 )
165165
166- isCSS
167- * static*
166+ ### isCSS
168167
168+ * static*
169169
170170 * ` param ` $selector
171171 * ` return ` bool
172172
173173[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L154 )
174174
175- isID
176- * static*
175+ ### isID
177176
177+ * static*
178178
179179Checks that string and CSS selector for element by ID
180180
181181
182182[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L181 )
183183
184- isXPath
185- * static*
184+ ### isXPath
186185
186+ * static*
187187
188188Checks that locator is an XPath
189189
@@ -192,9 +192,9 @@ Checks that locator is an XPath
192192
193193[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L170 )
194194
195- lastElement
196- * static*
195+ ### lastElement
197196
197+ * static*
198198
199199Locates last element of group elements.
200200Either CSS or XPath locator can be passed as locator,
@@ -211,9 +211,9 @@ Locator::lastElement('//table/tr');
211211
212212[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L264 )
213213
214- option
215- * static*
214+ ### option
216215
216+ * static*
217217
218218Matches option by text
219219
@@ -223,9 +223,9 @@ Matches option by text
223223
224224[ See source] ( https://github.com/Codeception/Codeception/blob/2.2/src/Codeception/Util/Locator.php#L109 )
225225
226- tabIndex
227- * static*
226+ ### tabIndex
228227
228+ * static*
229229
230230Matches the element with given tab index
231231
0 commit comments