You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Malformed selector starting with ``//`` or ``..`` is assumed to be an xpath selector.
134
196
For example, ``//html/body`` is converted to ``xpath=//html/body``. More
135
197
examples are displayed in `Examples`.
136
198
137
-
Note that xpath does not pierce shadow roots.
199
+
Note that xpath does not pierce [https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM|shadow_roots].
138
200
139
-
=== text ===
201
+
202
+
== Text ==
140
203
141
204
Text engine finds an element that contains a text node with the passed text.
142
205
For example, ``Click text=Login`` clicks on a login button, and
143
-
``Wait For Elements State lazy loaded text`` waits for the "lazy loaded text"
206
+
``Wait For Elements State text="lazy loaded text"`` waits for the "lazy loaded text"
144
207
to appear in the page.
145
208
146
-
- By default, the match is case-insensitive, ignores leading/trailing whitespace and searches for a substring. This means text= Login matches ``<button>Button loGIN (click me)</button>``.
147
-
- Text body can be escaped with single or double quotes for precise matching, insisting on exact match, including specified whitespace and case. This means ``text="Login "`` will only match ``<button>Login </button>`` with exactly one space after "Login". Quoted text follows the usual escaping rules, e.g. use ``\"`` to escape double quote in a double-quoted string: ``text="foo\"bar"``.
148
-
- Text body can also be a JavaScript-like regex wrapped in / symbols. This means ``text=/^\\s*Login$/i`` will match ``<button> loGIN</button>`` with any number of spaces before "Login" and no spaces after.
149
-
- Input elements of the type button and submit are rendered with their value as text, and text engine finds them. For example, ``text=Login`` matches ``<input type=button value="Login">``.
150
-
151
209
Malformed selector starting and ending with a quote (either ``"`` or ``'``) is assumed
152
-
to be a text selector. For example, ``Click Login`` is converted to ``Click text=Login``.
210
+
to be a text selector. For example, ``Click "Login"`` is converted to ``Click text="Login"``.
211
+
Be aware that these leads to exact matches only!
153
212
More examples are displayed in `Examples`.
154
213
155
-
== Selector syntax ==
214
+
215
+
=== insensitive match ===
216
+
217
+
By default, the match is case-insensitive, ignores leading/trailing whitespace and
218
+
searches for a substring. This means ``text= Login`` matches
219
+
``<button>Button loGIN (click me)</button>``.
220
+
221
+
=== exact match ===
222
+
223
+
Text body can be escaped with single or double quotes for precise matching,
224
+
insisting on exact match, including specified whitespace and case.
225
+
This means ``text="Login "`` will only match ``<button>Login </button>`` with exactly
226
+
one space after "Login". Quoted text follows the usual escaping rules, e.g.
227
+
use ``\\"`` to escape double quote in a double-quoted string: ``text="foo\\"bar"``.
228
+
229
+
=== RegEx ===
230
+
231
+
Text body can also be a JavaScript-like regex wrapped in / symbols.
232
+
This means ``text=/^hello .*!$/i`` or ``text=/^Hello .*!$/`` will match ``<span>Hello Peter Parker!</span>``
233
+
with any name after ``Hello``, ending with ``!``.
234
+
The first one flagged with ``i`` for case-insensitive.
235
+
See [https://regex101.com/] for more information about RegEx.
236
+
237
+
=== Button and Submit Values ===
238
+
239
+
Input elements of the type button and submit are rendered with their value as text,
240
+
and text engine finds them. For example, ``text=Login`` matches
241
+
``<input type=button value="Login">``.
242
+
243
+
244
+
245
+
== Cascaded selector syntax ==
156
246
157
247
Browser library supports the same selector strategies as the underlying
158
248
Playwright node module: xpath, css, id and text. The strategy can either
159
249
be explicitly specified with a prefix or the strategy can be implicit.
160
250
161
-
Selector is a string that consists of one or more clauses separated by
251
+
A major advantage of Browser is, that multiple selector engines can be used
252
+
within one selector. It is possible to mix XPath, CSS and Text selectors while
253
+
selecting a single element.
254
+
255
+
Selectors are strings that consists of one or more clauses separated by
162
256
``>>`` token, e.g. ``clause1 >> clause2 >> clause3``. When multiple clauses
163
257
are present, next one is queried relative to the previous one's result.
164
258
Browser library supports concatination of different selectors seperated by ``>>``.
Each clause contains a selector engine name and selector body, e.g.
170
265
``engine=body``. Here ``engine`` is one of the supported engines (e.g. css or
@@ -183,11 +278,7 @@ class Browser(DynamicCore):
183
278
that contains some element with the text Hello.
184
279
185
280
For convenience, selectors in the wrong format are heuristically converted
186
-
to the right format:
187
-
188
-
- Selector starting with // or .. is assumed to be xpath=selector. Example: ``Click //button`` is converted to ``Click xpath=//button``.
189
-
- Selector starting and ending with a quote (either " or ') is assumed to be text=selector. Example: ``Click Submit`` is converted to ``Click text=Submit``.
190
-
- Otherwise, selector is assumed to be css=selector. Example: ``Click button`` is converted to ``Click css=button``.
281
+
to the right format. See `Implicit Selector Strategy`
191
282
192
283
== Examples ==
193
284
| # queries 'div' css selector
@@ -197,7 +288,7 @@ class Browser(DynamicCore):
197
288
| Get Element //html/body/div
198
289
|
199
290
| # queries '"foo"' text selector
200
-
| Get Element text="foo"
291
+
| Get Element text=foo
201
292
|
202
293
| # queries 'span' css selector inside the result of '//html/body/div' xpath selector
203
294
| Get Element xpath=//html/body/div >> css=span
@@ -208,13 +299,17 @@ class Browser(DynamicCore):
208
299
| # converted to 'xpath=//html/body/div'
209
300
| Get Element //html/body/div
210
301
|
211
-
| # converted to 'text=foo'
212
-
| Get Element foo
302
+
| # converted to 'text="foo"'
303
+
| Get Element "foo"
213
304
|
214
305
| # queries the div element of every 2nd span element inside an element with the id foo
215
306
| Get Element \\#foo >> css=span:nth-child(2n+1) >> div
307
+
| Get Element id=foo >> css=span:nth-child(2n+1) >> div
216
308
217
-
=== Finding elements inside frames ===
309
+
Be aware that using ``#`` as a starting character in Robot Framework would be interpreted as comment.
310
+
Due to that fact a ``#id`` must be escaped as ``\\#id``.
311
+
312
+
== Frames ==
218
313
219
314
By default, selector chains do not cross frame boundaries. It means that a
220
315
simple CSS selector is not able to select and element located inside an iframe
0 commit comments