SeleniumLibrary
SeleniumLibrary copied to clipboard
Web testing library for Robot Framework
This is not a bug, but rather a new feature. Often the browser page is longer that is shown and the user needs to scroll down to see the rest...
fixes #1752
Sometimes element has spaces that can be accepted for the test case. Specially leading and trailing spaces can occur in element. These functionalities has added to BuiltIn Should Be Equal...
## Steps to reproduce the issue `Press Keys` keyword execution with special selenium keys, for example `Press Keys css:locator BACKSPACE`, brings two _key_up_ events unexpectedly. That causes two letters removal...
Sometimes element has spaces that can be accepted for the test case. Specially leading and trailing spaces can occur in element. These functionalities has added to [BuiltIn Should Be Equal](https://robotframework.org/robotframework/latest/libraries/BuiltIn.html#Should%20Be%20Equal)...
Fixes issue mentioned in https://github.com/robotframework/SeleniumLibrary/issues/1746
# For issues ## Steps to reproduce the issue ```python from SeleniumLibrary import SeleniumLibrary from time import sleep library = SeleniumLibrary() def minimal_task(): try: library.open_browser('https://docs.robocorp.com') library.input_password("//input[@aria-label='Search']", "playwright") sleep(5) finally: library.close_all_browsers()...
Today, I stumbled upon the lack of ability to set the page load timeout defined by the W3C WebDriver standard [1]. The underlying Python Selenium implementation does provide a corresponding...
## Environment Browser: firefox 78.12.0esr (64-bit) and chrome Version 92.0.4515.131 Browser driver: ChromeDriver 92.0.4515.107 Operating System: Windows10 Enterprise 1909 Libraries robotframework-seleniumlibrary 5.1.3 robotframework 4.1 robotframework-pythonlibcore 3.0.0 ## Steps to reproduce...
Description: With Robot Framework > 4.x keyword Open browser (SeleniumLibrary) fails to correctly interpret parameter service_log_path and assigned value ${None}. With Robot Framework = 3.2.2 everything works fine. Steps to...