Robot Framework

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...
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
-
Updated
Dec 8, 2018 - C++
Allure report doesn't contain parameters from Scenario Outline
Feature: Some Feature
Scenario: Some Scenario
Given variable is <a_value>
When we add <b_value>
Then the result will be <c_value>
Examples:
| a_value | b_value | c_value |
| 2 | 3 | 5 |
| 3 | 3 | 6 |
The data from "Exambles" doesn't pass to allure repor
-
Updated
Feb 4, 2020 - Java
Swipe by direction is still not implemented, yet the documentation has this function already. Can this be removed or updated somehow?
-
Updated
Mar 31, 2020 - C#
The opencv capture should not trigger a resize of the swing gui. Instead we should have the VideoWidget handle auto resizing so the swing gui doesn't get so large it goes off the screen.
From https://asyrjasalo.github.io/RESTinstance/#Array I wasn't sure how to use enum and validations. Would be wonderful to have more examples,and maybe something comples like constraints over an array of objects. Thanks.
-
Updated
Mar 14, 2020 - Python
I had to install geckodriver in order to pass the test. It took me a while to figure that out. Being that this tutorial is for new users, that might be a helpful note to put in the readme.
-
Updated
Mar 31, 2020 - Jupyter Notebook
-
Updated
Mar 30, 2020 - JavaScript
-
Updated
Feb 5, 2020 - Python
-
Updated
Mar 27, 2020 - HTML
-
Updated
Mar 4, 2020 - Python
-
Updated
Sep 22, 2019 - Shell
( Possibly same as issue #5 )
( From https://groups.google.com/forum/#!topic/robotframework-users/017w6G7HljE%5B1-25%5D )
If you include some regexp code, it breaks highlighting after the regexp is defined. The following code will show this issue.
*** Settings ***
Documentation Verify ability to upgrade and downgrade FW
Suite Setup yada yada yada ${VAR_1}
We need to provide more information for users first landing on the repository. Right now we just rely on user knowledge, the docs, and the example tests. However for a library aimed at helping not only existing teams, but new teams get set up we need a more comprehensive guide to importing and using the libraries.
-
Updated
Mar 29, 2020 - Python
If an element is not present in JSON I would expect Get Value From Json
keyword to fail instead of returning an empty list.
How do you think about it?
Cheers
Tset
-
Updated
Nov 22, 2017 - Python
-
Updated
Jul 31, 2019 - Python
-
Updated
Mar 25, 2020 - Dockerfile
- Add who and how (Issue) needs to be contacted at the zofar-team
- add a template for what zofar needs (dzhw/zofar#333 (comment))
- add, that and why we use
pages
and why (not)questions
- atm (still? ask Christian) questions are not the questions we need but a technical dimension that we can't work with
- "by default" zofar links the
-
Updated
Feb 10, 2020 - Python
-
Updated
Mar 12, 2020 - Python
-
Updated
Oct 11, 2019 - Python
Created by Pekka Klärck
Released 06 2008
Latest release 11 months ago
- Repository
- robotframework/robotframework
- Website
- robotframework.org
- Wikipedia
- Wikipedia
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 :)