SeleniumLibrary
SeleniumLibrary copied to clipboard
Web testing library for Robot Framework
It would be useful to get all texts of element with certain locator. In my application we have these kind of components, which are not actually list, but I need...
There are currently several problems with handling frames that should be resolved. Some of these problems are already covered by existing issues, but this new issue list all these highly...
When running test in Windows, few of the acceptance tests do fail. Fix the acceptance test work also in Windows.
Click Link keyword is able to locate web element based on element's text. Could we make Click Button and Click Element to do the same? Example web element: ```THE TEXT...
Copied from ExtendedSelenium2Library: ```python @keyword def wait_until_element_contains_attribute(self, attribute_locator, expected, timeout=None, error=None): """Waits until element attribute identified by ``attribute_locator`` contains ``expected``. Fails if ``timeout`` expires before the ``expected`` element attribute presents...
It would be great to be able to turn off case sensitivity for keywords like `Element Text Should Be`, `Wait Until Element Contains`, `Wait Until Element Does Not Contain`, `Wait...
I just withnessed following issue: Running Acceptance . Keywords . Alerts . Alert Should Not Be Present with custom timeout left a alert open after a test failure and that...
We should have code of conduct, see more in here: https://help.github.com/en/articles/adding-a-code-of-conduct-to-your-project
Copied from ExtendeSelenium2Library: ```python @keyword def element_attribute_should_contain(self, attribute_locator, expected, message=''): """Verifies element attribute identified by ``attribute_locator`` contains ``expected``. Arguments: - ``attribute_locator``: The locator to find requested element attribute. It consists...
Now if there are multiple elements found by the locator, then SL silently takes the first elements. This is not good implementation and we should want users about multiple elements...