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 368 public repositories matching this topic...
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 set_page_load_timeout method in selenium.webdriver.remote.webdriver.WebDriver [2].
Too me, it is not completely clear how this should be handled on the library level. SeleniumLibrary currently has two ki
-
Updated
May 24, 2021 - Python
-
Updated
May 9, 2020 - C++
-
Updated
Mar 31, 2021 - Java
-
Updated
May 24, 2021 - Python
-
Updated
May 26, 2021 - Go
-
Updated
Jun 1, 2021 - Java
-
Updated
May 31, 2021 - Python
-
Updated
Mar 29, 2021 - Python
-
Updated
Oct 7, 2020 - RobotFramework
-
Updated
Mar 29, 2021 - Python
Most important enhancements:
-
Updated
May 28, 2021 - Python
-
Updated
Mar 28, 2021 - JavaScript
Duplicated tag
-
Updated
May 29, 2021 - Jupyter Notebook
-
Updated
Mar 29, 2021 - Python
-
Updated
Aug 25, 2020 - Python
-
Updated
Apr 20, 2021 - JavaScript
-
Updated
Feb 5, 2020 - Python
-
Updated
Sep 22, 2019 - Shell
-
Updated
Apr 8, 2021 - Python
-
Updated
Mar 25, 2021 - Python
-
Updated
Jul 26, 2018
-
Updated
Apr 13, 2021 - Python
-
Updated
Apr 30, 2021 - Python
-
Updated
Feb 23, 2021 - Python
I would like to be able to set a name prefix for the screenshot file. Is this possible?
Maybe an option to set it permanent and also a variable to overrule it when taking a screenshot?
Would even be better that you can also supply a sub folder name when taking the screenshot!
Created by Pekka Klärck
Released 06 2008
Latest release 7 days ago
- Repository
- robotframework/robotframework
- Website
- robotframework.org
- Wikipedia
- Wikipedia
With the support of type-hints Python signatures can give information on the type of returned values of a method. This could be used to improve the documentation generated by libdoc.
def my_func(foo: str, count: int) -> str:will give the following in the Argument column:foo: str, count: intThis could be expanded to include the type of the returned value:
foo: str, count: int -> str