All Projects → qentinelqi → qweb

qentinelqi / qweb

Licence: Apache-2.0 license
Keyword driven automation for the web

Programming Languages

python
139335 projects - #7 most used programming language
RobotFramework
109 projects
HTML
75241 projects

QWeb

Keyword based test automation for the web.


License Python versions Release Windows Acceptance Linux Acceptance MacOS Acceptance Tested with Slack

Table of Contents


Introduction

QWeb is an open source web automation interface in Robot Framework. It makes automation rapid, robust, and fun.

QWeb aims to make web automation easy and maintainable by:

  • providing high level keywords for accessing any web page element
  • preferring text locators (UI texts) but supporting also other locator strategies (xpaths, css selectors)
  • automatically handling latencies etc. via automatic wait times
  • automatically handling unexpected alerts
  • minimizing the maintenance effort

See examples.

Back To The Top


Requirements

Python 3.7-3.10 and Robot Framework 3.2.2 or above. Browser drivers need to be installed separately.

(Note that support on Macs with Apple based silicon (M1) requires latest MacOS version (12/Monterey) or custom installation.)

Installation

Windows

    pip install QWeb

Linux/Mac

    python3 -m pip install -U pip
    python3 -m pip install QWeb

Running the above command installs also supported Selenium and Robot Framework versions + other dependencies, but you still need to install browser drivers separately. Please refer to Selenium documentation for more information on how to install browser drivers manually OR use 3rd party packages like WebDriverManager.

Back To The Top


Usage

Keyword documentation

See list of keywords and their usage on

Back To The Top

Examples

Basic usage

The preferred way to interact with web elements is using their text property. Most elements like input fields and dropdowns can also be found by closest label (text).

*** Settings ***
Library    QWeb     # Import library

*** Test Cases ***
Basic interaction
    OpenBrowser         https://qentinelqi.github.io/shop      chrome   # Open chrome and goto given url
    VerifyText          The animal friendly clothing company            # Assert heading text
    ClickText           Scar the Lion                                   # Click link text
    ClickText           Add to cart                                     # Click *button* with specific text
    DropDown            Size            Large                           # Select value (Large) from dropdown (Size)

Shadow DOMs and visibility

Most common cases when text or element is not found are:

  • Element has (incorrectly?) some attribute set so, that it's considered invisible.
  • Element is under shadow dom (i.e. has #shadow-root parent element)

QWeb searches for visible elements by default, but can be instructed to work with invisible elements as well. See keyword documentation of SetConfig and the following parameters:

  • Visibility
  • Offsetcheck
  • InViewport

Elements under shadow DOM can not be found using xpaths. However, all *Text, *Item and *Input keywords do support extending the search to Shadow DOM elements. We intentionally keep this under separate setting for ensuring compatibility with older test cases.

Example:

*** Settings ***
Library    QWeb     # Import library
SetConfig            ShadowDOM            True  # extends search to shadow dom elements
OpenBrowser          chrome://settings/content/popups   chrome
ClickText            Sites can send pop-ups 

Timeouts and anchors

By default QWeb tries to locate the element 10 seconds (default time can be configured). Timeout can also be individually given for each keyword as an argument.

When text to be found is not unique, an 'anchor' argument can be given to pinpoint which instance of text we want to interact with. Anchor can be either another text nearby or index.

ClickText   Sign-in
ClickText   Sign-in     timeout=30

ClickText   Sign-in     anchor=Email
ClickText   Sign-in     index=3

Other locators

Non-textual locators can be used with ClickElementand ClickItemkeywords.

ClickElement    xpath\=//button[@class="my_class"]   # xpath
ClickItem       Increment quantity                   # alt text

Working with tables

QWeb includes keywords to interact with table data easily.

Consider the following table as an example: Example table

UseTable    Firstname

${row}=     GetTableRow     //last                        # returns 5
${row}=     GetTableRow     //last    skip_header=True    # returns 4
...
${row}=     GetTableRow     Jim                           # returns 4
${row}=     GetTableRow     Jim    skip_header=True       # returns 3

${cell_value}=     GetCellText     r1c2                   # Returns "John", first name is column 2.

${cell_value}=     GetCellText     r-1/c2                 # Returns "Tina", -1 points to last row
${cell_value}=     GetCellText     r-2/c2                 # Returns "Jim", -2 points to second last row

Changing configuration

QWeb's behavior can be changed with SetConfig keyword.

SetConfig     SearchMode     Draw       # Highlight all found elements with blue rectangle

SetConfig     DefaultTimeout    60s     # change default/automatic timeout for all keywords
VerifyText    User account created      # Re-tries to find text "User account created" 60 seconds and then fails, if text is not visible

More examples on QWeb tutorial.

Back To The Top


Changelog

See RELEASE.md

Back To The Top

Contribute

Found an bug? Want to propose a new feature or improve documentation? Please start by checking our contribution guide

Back To The Top

Community

Want to join the community at Slack? On the official Robot Framework workspace, there is a QWeb channel where you can discuss with others about keywords, issues and improvements. Join Now

Back To The Top

License

Apache 2.0 License. See LICENSE.

Back To The Top

Resources


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].