The Wayback Machine - https://web.archive.org/web/20200405184513/https://github.com/topics/robotframework
Skip to content
#

Robot Framework

robotframework logo

Robot Framework is an open source, easy to learn, and easy to use, yet powerful, and extendable, generic automation framework for software testing and RPA (robotic process automation). While it's original purpose was to support acceptance testing and acceptance test driven development (ATDD) of embedded software at Nokia Networks back in 2005, nowadays it is also widely used for automation of integration tests and end-to-end tests in desktop, web, and mobile development. You can use it to automate GUI based applications as well as REST, RPC, SOAP and other API, and protocol based testing. Due to it's text based nature and cli tools RF is a perfect match for agile and DevOps, and DevSecOps driven projects striving to succeed in continuous testing. It integrates very well with open source and commercial CI/CD solutions like Jenkins, CircleCI, Github Actions, and Azure Pipelines - just to name a few. It is also developer friendly and can easily be versioned with Git, and used with Docker and other container and virtualisation technologies to support building and maintaining of scalable (test) environments following the configuration as code or infrastructure as code approach. RF can be used in projects of any technology stack, and runs on any infrastructure (Windows, Mac, Linux, cloud) - it is stack and infrastructure agnostic.

Here are 239 public repositories matching this topic...

lucielavickova
lucielavickova commented Jul 12, 2019

Would it be possible to add "trim" parameter to keyword "Should Be Equal As Strings" (+related keywords)?
Many times I need to compare two strings, but there are some trailing or leading whitespaces in the actual value, which I don't care about, so I always have to trim them before. Having trim as a parameter in these keywords would help me a lot :)

IlfirinPL
IlfirinPL commented Feb 3, 2020

Feature requests

It would extend to keyword Wait Until Page Contains allow to add option Limit that works the same as in keywords Page Should Contain Element.

Currently to use this feature its require to use WUKS with this keyword
|Wait Until Keyword Succeeds | ${Timeout} | ${iteration} | Page Should Contain Element | ${locator} | limit=4|

Its less clear code then
| Wait Until Page C

You can’t perform that action at this time.