Skip to content

Commit 92f1599

Browse files
committedAug 20, 2020
Reviewed and Fixed Docs
1 parent a2267d8 commit 92f1599

File tree

4 files changed

+261
-143
lines changed

4 files changed

+261
-143
lines changed
 

‎Browser/browser.py

+200-81
Original file line numberDiff line numberDiff line change
@@ -38,133 +38,228 @@ class Browser(DynamicCore):
3838
[https://www.mozilla.org/en-US/firefox/new/|Firefox]
3939
and [https://webkit.org/|WebKit] with a single library.
4040
41+
4142
== Table of contents ==
4243
4344
%TOC%
4445
4546
= Browser, Context and Page =
4647
4748
Browser library works with three different layers that build on each other:
48-
Browser, Context and Page. A browser can be started with one of the three
49-
different engines Chromium, Firefox or Webkit. Since
50-
[https://github.com/microsoft/playwright|Playwright] comes with a pack of builtin
49+
*Browser*, *Context* and *Page*.
50+
51+
52+
== Browsers ==
53+
54+
A *browser* can be started with one of the three
55+
different engines Chromium, Firefox or Webkit.
56+
57+
=== Supported Browsers ===
58+
| Browser | Browser with this engine |
59+
| ``chromium`` | Google Chrome, Microsoft Edge (since 2020), Opera |
60+
| ``firefox`` | Mozilla Firefox |
61+
| ``webkit`` | Apple Safari, Mail, AppStore on MacOS and iOS |
62+
63+
Since [https://github.com/microsoft/playwright|Playwright] comes with a pack of builtin
5164
binaries for all browsers, no additional drivers e.g. geckodriver are needed.
52-
The browser process is started
53-
``headless`` (without a GUI) by default. Run `New Browser` with specified arguments
54-
if a browser with a GUI is requested. A browser process can contain several contexts,
55-
e.g. corresponds to several icognito browsers in Chrome. Compared to Selenium,
56-
these do not require their own browser process or their own runtime environment.
57-
This means that new Icognito browsers can be opened about 10 times faster than
58-
Selenium. As in Chrome, a context can open different pages.
65+
66+
All these browsers that cover more than 85% of the world wide used browsers,
67+
can be tested on Windows, Linux and MacOS.
68+
Theres is not need for dedicated machines anymore.
69+
70+
A browser process is started ``headless`` (without a GUI) by default.
71+
Run `New Browser` with specified arguments if a browser with a GUI is requested
72+
or if a proxy has to be configured.
73+
A browser process can contain several contexts.
74+
75+
76+
== Contexts ==
77+
78+
A *context* corresponds to several independent incognito browsers in Chrome
79+
that do not share cookies, sessions or profile settings.
80+
Compared to Selenium, these do *not* require their own browser process!
81+
Therefore, to get a clean environment the tests shall just close the current
82+
context and open a new context.
83+
Due to this new independent browser sessions can be opened with
84+
Robot Framework Browser about 10 times faster than with Selenium by
85+
just opening a `New Context` within the opened browser.
5986
6087
The context layer is useful e.g. for testing different users sessions on the
61-
same webpage without opening a whole new browser context. In order to test
62-
downloads the ``acceptDownloads`` argument must be set in `New Context`.
63-
Files can be downloaded either temporary or permanently on the file storage.
88+
same webpage without opening a whole new browser context.
89+
Contexts can also have detailed configurations, such as geo-location, language settings,
90+
the viewport size or color scheme.
91+
Contexts do also support http credentials to be set, so that basic authentication
92+
can also be tested. To be able to download files within the test,
93+
the ``acceptDownloads`` argument must be set to ``True`` in `New Context` keyword.
94+
A context can contain different pages.
95+
96+
97+
== Pages ==
98+
99+
A *page* does contain the content of the loaded web site.
100+
Pages and browser tabs are the same.
101+
102+
Typical usage could be:
103+
| *** Test Cases ***
104+
| Starting a browser with a page
105+
| New Browser chromium headless=false
106+
| New Context viewport={'width': 1920, 'height': 1080}
107+
| New Page https://marketsquare.github.io/robotframework-browser/Browser.html
108+
| Get Title == Browser
64109
65-
When a new page is opened as the first step with `New Page`, `New Browser`
66-
and `New Context` are executed with default values first. The same goes vice
67-
versa with `Close Browser`.
110+
There are shortcuts to open new pages together with new browsers but the offer less control.
111+
112+
The `Open Browser` keyword opens a new browser, a new context and a new page.
113+
This keyword is usefull for quick experiments or debugging sessions.
114+
115+
When a `New Page` is called without an open browser, `New Browser`
116+
and `New Context` are executed with default values first.
68117
69118
If there is no browser opened in Suite Setup and `New Page` is executed in
70-
Test Setup, the corresponding pages and context is closed automatically after
119+
Test Setup, the corresponding pages and context is closed automatically at the end of
71120
the test. The browser process remains open and will be closed at the end of
72121
execution.
73122
74123
Each Browser, Context and Page has a unique ID with which they can be adressed.
75-
A full list can be recieved by `Get Browser Catalog`.
124+
A full catalog of what is open can be recieved by `Get Browser Catalog` as dictionary.
125+
76126
77-
*Supported Browsers*
78-
| Browser | Call argment for `New Browser` |
79-
| Chromium | ``chromium`` |
80-
| Firefox | ``firefox`` |
81-
| Safari | ``webkit`` |
82127
83128
= Finding elements =
84129
85130
All keywords in the library that need to interact with an element
86131
on a web page take an argument typically named ``selector`` that specifies
87132
how to find the element.
88133
89-
== Implicit selector strategy ==
90-
91-
The default selector strategy is `css`. If selector does not contain
92-
one of the know selector strategies, `css`, `xpath`, `id` or `text` it is
93-
assumed to contain css selector. Also `selectors` starting with `//`
94-
considered as xpath selectors.
134+
Selector strategies that are supported by default are listed in the table
135+
below.
95136
96-
Examples:
137+
| = Strategy = | = Match based on = | = Example = |
138+
| ``css`` | CSS selector. | ``css=.class > #login_btn`` |
139+
| ``xpath`` | XPath expression. | ``xpath=//input[@id="login_btn"]`` |
140+
| ``text`` | Browser text engine. | ``text=Login`` |
141+
| ``id`` | Element ID Attribute. | ``id=login_btn`` |
97142
98-
| # Use css selector strategy the element.
99-
| `Click` span > button
100-
|
101-
| # Use xpath selector strategy the element.
102-
| `Click` //span/button
103143
104-
== Explicit selector strategy ==
144+
== Explicit Selector Strategy ==
105145
106146
The explicit selector strategy is specified with a prefix using syntax
107147
``strategy=value``. Spaces around the separator are ignored, so
108148
``css=foo``, ``css= foo`` and ``css = foo`` are all equivalent.
109149
110-
Selector strategies that are supported by default are listed in the table
111-
below.
112150
113-
| = Strategy = | = Match based on = | = Example = |
114-
| css | CSS selector. | ``css=div#example`` |
115-
| xpath | XPath expression. | ``xpath=//div[@id="example"]`` |
116-
| text | Browser text engine. | ``text=Login`` |
151+
== Implicit Selector Strategy ==
117152
118-
=== CSS ===
153+
*The default selector strategy is `css`.*
119154
120-
As written before the default selector strategy is `css`. The engine is equivalent to
121-
[https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | css selector].
122-
Example: ``css=div#example``.
155+
If selector does not contain one of the know explicit selector strategies, it is
156+
assumed to contain css selector.
157+
158+
Selectors that are starting with ``//`` or ``..`` are considered as xpath selectors.
159+
160+
Selectors that are in quotes are considered as text selectors.
161+
162+
Examples:
163+
164+
| # CSS selectors are default.
165+
| `Click` span > button.some_class # This is equivalent
166+
| `Click` css=span > button.some_class # to this.
167+
|
168+
| # // or .. leads to xpath selector strategy
169+
| `Click` //span/button[@class="some_class"]
170+
| `Click` xpath=//span/button[@class="some_class"]
171+
|
172+
| # "text" in quotes leads to exact text selector strategy
173+
| `Click` "Login"
174+
| `Click` text="Login"
175+
176+
177+
== CSS ==
178+
179+
As written before, the default selector strategy is `css`. See
180+
[https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors | css selector]
181+
for more information.
182+
183+
Any malformed selector not starting with ``//`` or ``..`` nor starting and ending
184+
with a quote is assumed to be a css selector.
185+
186+
Example:
187+
| `Click` span > button.some_class
123188
124-
A Selector sorrounded by ``[]`` is assumed to be a css selector. For example
125-
``[href="index.php"] is converted to ``css=[href="index.php"]``. More
126-
examples are displayed in `Examples`.
127189
128-
=== xpath ===
190+
== XPath ==
129191
130192
XPath engine is equivalent to [https://developer.mozilla.org/en/docs/Web/API/Document/evaluate|Document.evaluate].
131-
Example: ``xpath=//html/body``.
193+
Example: ``xpath=//html/body//span[text()="Hello World"]``.
132194
133195
Malformed selector starting with ``//`` or ``..`` is assumed to be an xpath selector.
134196
For example, ``//html/body`` is converted to ``xpath=//html/body``. More
135197
examples are displayed in `Examples`.
136198
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].
138200
139-
=== text ===
201+
202+
== Text ==
140203
141204
Text engine finds an element that contains a text node with the passed text.
142205
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"
144207
to appear in the page.
145208
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-
151209
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!
153212
More examples are displayed in `Examples`.
154213
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 ==
156246
157247
Browser library supports the same selector strategies as the underlying
158248
Playwright node module: xpath, css, id and text. The strategy can either
159249
be explicitly specified with a prefix or the strategy can be implicit.
160250
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
162256
``>>`` token, e.g. ``clause1 >> clause2 >> clause3``. When multiple clauses
163257
are present, next one is queried relative to the previous one's result.
164258
Browser library supports concatination of different selectors seperated by ``>>``.
165259
166260
For example:
167-
``"Hello" >> ../.. >> css=button``
261+
| `Highlight Elements` "Hello" >> ../.. >> .select_button
262+
| `Highlight Elements` text=Hello >> xpath=../.. >> css=.select_button
168263
169264
Each clause contains a selector engine name and selector body, e.g.
170265
``engine=body``. Here ``engine`` is one of the supported engines (e.g. css or
@@ -183,11 +278,7 @@ class Browser(DynamicCore):
183278
that contains some element with the text Hello.
184279
185280
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`
191282
192283
== Examples ==
193284
| # queries 'div' css selector
@@ -197,7 +288,7 @@ class Browser(DynamicCore):
197288
| Get Element //html/body/div
198289
|
199290
| # queries '"foo"' text selector
200-
| Get Element text="foo"
291+
| Get Element text=foo
201292
|
202293
| # queries 'span' css selector inside the result of '//html/body/div' xpath selector
203294
| Get Element xpath=//html/body/div >> css=span
@@ -208,13 +299,17 @@ class Browser(DynamicCore):
208299
| # converted to 'xpath=//html/body/div'
209300
| Get Element //html/body/div
210301
|
211-
| # converted to 'text=foo'
212-
| Get Element foo
302+
| # converted to 'text="foo"'
303+
| Get Element "foo"
213304
|
214305
| # queries the div element of every 2nd span element inside an element with the id foo
215306
| Get Element \\#foo >> css=span:nth-child(2n+1) >> div
307+
| Get Element id=foo >> css=span:nth-child(2n+1) >> div
216308
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 ==
218313
219314
By default, selector chains do not cross frame boundaries. It means that a
220315
simple CSS selector is not able to select and element located inside an iframe
@@ -223,23 +318,47 @@ class Browser(DynamicCore):
223318
inside a frame.
224319
225320
Given this simple pseudo html snippet:
226-
``<iframe name="iframe" src="src.html"><button id="btn">Click Me</button></iframe>``,
227-
here's a keyword call that clicks the button inside the frame.
321+
| <iframe id="iframe" src="src.html">
322+
| #document
323+
| <!DOCTYPE html>
324+
| <html>
325+
| <head></head>
326+
| <body>
327+
| <button id="btn">Click Me</button>
328+
| </body>
329+
| </html>
330+
| </iframe>
331+
332+
Here's a keyword call that clicks the button inside the frame.
228333
229-
| Click iframe[name="iframe"] >>> #btn
334+
| Click id=iframe >>> id=btn
230335
231336
The selectors on the left and right side of ``>>>`` can be any valid selectors.
337+
The selector clause directly before the frame opener ``>>>`` must select the frame element.
338+
339+
== WebComponents and Shadow DOM ==
340+
341+
Playwright and so also Browser are able to do automatic piercing of Shadow DOMs
342+
and therefore are the best automation technology when working with WebComponents.
343+
344+
Also other technologies claim that they can handle
345+
[https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM|Shadow DOM and Web Components].
346+
However, non of them do pierce shadow roots automatically,
347+
which may be inconvenient when working with Shadow DOM and Web Components.
348+
349+
For that reason, css engine pierces shadow roots. More specifically, every
350+
[https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant_combinator|Descendant combinator]
351+
pierces an arbitrary number of open shadow roots, including the implicit descendant combinator
352+
at the start of the selector.
353+
354+
That means, it is not nessesary to select each shadow host, open its shadow root and
355+
select the next shadow host until you reach the element that should be controlled.
232356
233357
=== CSS:light ===
234358
235359
``css:light`` engine is equivalent to [https://developer.mozilla.org/en/docs/Web/API/Document/querySelector | Document.querySelector]
236360
and behaves according to the CSS spec.
237-
However, it does not pierce shadow roots, which may be inconvenient when working with
238-
[https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_shadow_DOM | Shadow DOM and Web Components].
239-
For that reason, ``css`` engine pierces shadow roots. More specifically, every
240-
[https://developer.mozilla.org/en-US/docs/Web/CSS/Descendant_combinator|Descendant]
241-
combinator pierces an arbitrary number of open shadow roots, including the implicit
242-
descendant combinator at the start of the selector.
361+
However, it does not pierce shadow roots.
243362
244363
``css`` engine first searches for elements in the light dom in the iteration order,
245364
and then recursively inside open shadow roots in the iteration order. It does not

0 commit comments

Comments
 (0)
Please sign in to comment.