SeleniumLibrary icon indicating copy to clipboard operation
SeleniumLibrary copied to clipboard

Web testing library for Robot Framework

Results 115 SeleniumLibrary issues
Sort by recently updated
recently updated
newest added

HTML button: ``` html Logout ``` Accessing this button from RF with the following code does not work: ``` robot ***keywords*** Log Off And Close Browser Page Should Contain Button...

bug

[`--noncritical`](https://github.com/robotframework/SeleniumLibrary/blob/master/atest/run.py#L100) is deprecated and ignored in RF 4 and a warning is issued. The option is completely removed in RF 5 and causes tests to fail. This doesn't show up...

create_webdriver was marked as returning a str, however, its return value is coming from register_driver which is documented to return int. These where changed to return actual int. switch_driver was...

# For issues ## Steps to reproduce the issue Under Windows ```msbatch mkdir atest-python-interpreter cd atest-python-interpreter virtualenv -p C:\Python39\python.exe venv-py39 venv-py39\Scripts\activate git clone [email protected]:robotframework/SeleniumLibrary.git rf-sl cd rf-sl pip install -r...

# Prerequisites - I have searched for similar issues in open tickets and cannot find a duplicate. - The issue still exists against the latest released version of SeleniumLibrary. -...

## Steps to reproduce the issue * Open a page in Firefox such that some element is not inside the viewport * Try to scroll to the element with 'Scroll...

# For issues ## Steps to reproduce the issue ``` Using selenium 4.5.0+ *** Settings *** Library SeleniumLibrary *** Test Cases *** Test Disabled Elements Open Browser https://demos.jquerymobile.com/1.4.5/forms-disabled browser=chrome Maximize...

Fixes #1788 Also updates `checkout` action to `v3` and `setup-python` action to `v4`. Actions based on Node12 now emit warnings like `Node.js 12 actions are deprecated. For more information see:...

When running under a virtualenv, using `python` as the interpreter forgets the virtualenv python which executed atest.run.py. Instead using sys.executable which will execute with same interpreter used to execute atest/run.py....