Top "Robotframework" questions

The Robot Framework is a generic test automation framework for acceptance testing and acceptance test-driven development (ATDD).

How to Click Link by URL in Robot Framework

In the [Selenium2 Robot Framework documentation][1], the guide to Click Link is: Clicks a link identified by locator. Key attributes …

selenium robotframework robotframework-ide
Sum of two variables in RobotFramework

I have two variables: ${calculatedTotalPrice} = 42,42 ${productPrice1} = 43,15 I executed ${calculatedTotalPrice} Evaluate ${calculatedTotalPrice}+${productPrice1} I got 42,85,15 How can I resolve it?

python automated-tests robotframework
How to run headless REMOTE chrome using robot framework

I'm trying to run chrome headless with my robot framework tests suites. I managed to do it independtly with python …

robotframework selenium2library
Is possible to create new variable in suite/test set up - Robot Framework?

Is it possible to initialize a variable in a suite or test setup based on the return value of a …

robotframework
PYTHONPATH showing empty in ubuntu 13.04

when i do echo $PYTHONPATH it returns nothing..empty line. so what does that mean. Im using python and it's …

python-2.7 ubuntu selenium-webdriver pythonpath robotframework
How can I set the value of a dictionary element to the result of a keyword in Robot Framework?

I know that I can access a single element from a dictionary object with this format ${dict['KEY']}. Like this: | | …

robotframework
Robot Framework If element is visible execute a keyword

I have a page that may and may not contain a certain element that will affect all the xpaths. I …

selenium-webdriver robotframework
Robot Framework - Selecting value from a dropdown list which appears after mouse over

The scenario is : The user will move the mouse over the link : ID_CHECK: R17AA003 The dropdown list will …

robotframework robotframework-ide
Is it possible to have a variable span multiple lines in Robot Framework?

I have a very long regex that I would like to put into a variable to test with. I'd like …

robotframework
How to import and use user defined classes in robot framework with python

Assume I have a class in python: class TestClass(object): def __init__(self, arg1, arg2): self.arg1 = arg1 self.arg2 = …

python testing robotframework