Questions tagged [robotframework-ide]

RIDE, or Robot IDE, is an integrated development environment, designed specifically for Robot Framework

RIDE is a test data editor and integrated development environment for Robot Framework test data. The editor, among other things, features a built-in test runner, auto-completion when writing test data and a GUI representation of the test data (setup/teardown, tags, etc.)

131 questions
23
votes
4 answers

Simplest way to concatenate two strings in robot framework .?

Given two strings 'a' , 'b', what is the simplest way to concatenate them and assign to a new variable in robot framework.? I tried this simple pythonic way, but it didn't work ${var}= 'a' + 'b'
user3170122
  • 677
  • 3
  • 9
  • 18
10
votes
1 answer

Create an Empty List and push data in an Iteration using Robot Framework

I need to make a collection which is populated in a loop. So, I need a global collection and I need to use that collection variable in For Loop using Robot Framework. Kindly look at the code *** Settings *** Library Selenium2Library Library …
user7784919
5
votes
4 answers

Unable to install robot-framework-ride with python 3.7

I need to install robot framework. i had installed python 3.7, wxPython and robotframework. Need to install robotframework-ride. While trying pip install robotframework-ride, getting error pip._internal.exceptions.InstallationError: Command "python…
Drup
  • 79
  • 1
  • 5
3
votes
1 answer

Error while launching robotframework-RIDE (Robot Framework IDE)

I have installed Robot Framework and installed wxPython and then Ride. When I launch it by executing python ride.py, it runs into an error as shown below. I believe it has something to do with the wxPython version, not sure. There is a series of…
davidbilla
  • 2,120
  • 1
  • 15
  • 26
3
votes
2 answers

I can't run a simple test in RIDE (ROBOT FRAMEWORK)

I was trying to run a test I wrote in RIDE IDE I'm using SelenuimLibrary and i'm trying to open the Linkedin login page Here is the code below Library Selenium2Library *** Variables *** ${Username} …
user7781212
3
votes
1 answer

How can I get multiple elements and print in Robot Framework- SeleniumLibrary?

${get_t}= Get Text //h6[@class='MuiTypography-root MuiTypography-subtitle2'] Log ${get_t} ${get_t1}= Get Element Count xpath://h6[@class='MuiTypography-root MuiTypography-subtitle2'] Log ${get_t1} ${get_t3}= Get WebElements …
3
votes
1 answer

can i use keywords as arguments in robotframework?

I want to replace ${assertion_Keyword} by Screen Should Contain or Screen Should Not Contain so i want to put an Argument like a keyword check_element_and_its_representation [Arguments] ${assertion_Keyword} ${payload} …
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
3
votes
2 answers

When I use captured images with SikuliLibrary, is there a way to make my tests support multi platforms in RIDE?

I have a problem while using SikuliLibrary because my tests should be run on both Windows 7 and Windows 10. How can I proceed? Some images are the same but sometimes there is a big difference so that it's impossible to find it. What do you suggest?…
Emna Ayadi
  • 2,430
  • 8
  • 37
  • 77
3
votes
1 answer

Chinese comments cannot show correctly in RIDE in Robot Framework

I define a function in the custom library in Robot Framework: def close_browser(self): ''' description: 关闭当前浏览器 params: None return: None ''' self.driver.quit() but when I search the function in RIDE, the…
Alex Bruce
  • 533
  • 2
  • 10
  • 23
3
votes
1 answer

Is there a way to run robot framework tests on a remote machine using RIDE?

I would like to run the tests using the RobotFramework IDE and view the execution log on my machine but perform the actual tests on a remote machine, preferably without rewriting the test suites (or with minimal rewrite). The way I see it is some…
NotGaeL
  • 8,344
  • 5
  • 40
  • 70
2
votes
1 answer

How to execute the commands in the Terminal using robot framework?

I want to execute the below commands in the Terminal using Robot Framework step by step. Any advice on how to go about it? 1. ssh -o ProxyCommand\='ssh -W %h:%p xx.xx.xx.xx' xx.xvb.xyz.wq 2. password 3. sudo su - pentaho 4. cd…
2
votes
1 answer

How to fix "Escaping empty cells with '\' before line continuation marker '...' is deprecated" error in Robot Framework?

I keep on getting this error when running my Robot Framework script: "Escaping empty cells with '\' before line continuation marker '...' is deprecated. Remove escaping before Robot Framework 3.2." Here is a sample code: *** Test Cases *** Debug …
R. Lecc
  • 31
  • 1
  • 6
2
votes
0 answers

Robot Framework / RIDE - Arguments with spaces

I have to run several test cases on different configurations. When I run a test case from the command line I want to pass the name of the configuration as a variable. I use something like: --variable CONFIG:xxx This is working fine. Now I have…
2
votes
3 answers

Allure not able to read output.xml file generated by AllureReportLibrary in Robot Framework

I am using Ride (RobotFramework IDE) and I have imported Library AllureReportLibrary in my project. Using the Set Output Dir, I am creating a Directory C:/AutomationLogs/Allure and all the allure properties and xml files are getting generated in…
Ryan M
  • 37
  • 2
  • 6
2
votes
2 answers

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 appear automatically User will select a test type from the list by Clicking I am trying this code to achieve this : Mouse over …
nhrcpt
  • 862
  • 3
  • 21
  • 51
1
2 3
8 9