6,835 questions
-1 votes
2 answers
66 views
SSH Library Robot framework - remote python script execution
I am using Robot Framework SSH Library - to perform the following operations. Connect to a remote machine via SSH Copy a python file into the remote machine. [The python file obtains the process with ...
0 votes
0 answers
29 views
Pabot.PabotLib | tests open different pages when running in parallel
I am using Robot Framework with Python and the Browser library. I test a web application. For each test, I create a new browser session, either in the test setup or during the test itself: Open ...
0 votes
0 answers
51 views
Why all browsers are executing scripts as headless on windows 11 when I trigger from Jenkins job
I need to run RPA python scripts on on windows11 device ,When I start executing from local machine using pycharm it’s physically browsers are visible. But when I trigger same code from Jenkins job ...
0 votes
0 answers
68 views
Robot Framework / Selenium – Chrome doesn’t download JSON file in Docker Bamboo agent
My Robot Framework test fails with: Keyword 'File Should Exist' failed after retrying 10 times. The last error was: File '/tmp/downloads/importResults.json' does not exist. Context Tests run inside ...
-5 votes
2 answers
113 views
How to use Convert JSON To Dictionary?
How to use Convert JSON To Dictionary? 1.file json is correctly. 2.import library correctly. The issue is this keyword "Convert JSON To Dictionary" still red error line. This is error ...
0 votes
1 answer
86 views
Why Robot Framework's SSHLibrary and Python's Paramiko give different outputs for same command? [duplicate]
In a network device for a script I am building, Robot Framework's SSHLibrary produced the identical result when typing the command manually in the device. But when writing the code with paramiko: ...
2 votes
0 answers
90 views
Robot test framework for Rust
I need to generate unit-test and integration-test reports (cargo test command) of a Rust project. To do this I am using RobotFramework. When I try to run cargo test command it fails with an error /usr/...
2 votes
3 answers
91 views
Robot framework- xpath - how to use translate() function
Robot framework- xpath - how to use translate() function Consider tc1.robot file as below: ... *** Test Cases *** LoginTest ... sleep 5 click element xpath://input[matches(@...
-2 votes
1 answer
53 views
Unable to download Robot Framework using PIP [duplicate]
I am new in automation testing. I already installed python. I already checked the python and pip version. But I am unable to install robot framework using the command prompt. I am getting an error ...
0 votes
1 answer
57 views
Error: Invalid data encountered during Robot Framework result import into Xray
I'm trying to synchronize Robot Framework test results that are executed via GitLab CI into Xray, but the import fails with an 'invalid data' error. Could you help identify the root cause or suggest ...
0 votes
1 answer
58 views
VSCode debug always sets cwd to test file's folder in Robot Framework project — ignores launch.json setting
Context I'm working on a Robot Framework project using VSCode and the robotcode extension (robotcode-dbiel). In production, we have one git repo for the framework, and one git repo for any test ...
0 votes
1 answer
262 views
I cannot open browser with robot framework
Here my sample code: *** Settings *** Library SeleniumLibrary *** Variables *** ${URL} https://www.google.com ${BROWSER} chrome *** Test Cases *** Browse Google Open Browser ...
0 votes
1 answer
107 views
How to fix this error "TypeError: sequence item 1: expected str instance, WebElement found"
I want to remove the product from the cart unexpectedly. But still got the error. This is an error:"TypeError: sequence item 1: expected str instance, WebElement found". I use Robot ...
0 votes
0 answers
35 views
How to select a WiFi network during Android device setup using automation? Automate WiFi selection screen during Android OOBE with Robot Framework
I’m trying to automate the process of selecting a WiFi network by its name during the initial setup of an Android device — the setup flow that includes selecting language, region, and connecting to ...
0 votes
1 answer
66 views
Robotframework test execution paused on failure and waiting for me to press enter to continue through the other test cases
I am currently trying to develop automated tests with Robotframework and everything is going fine except one probleme i have : when I execute a suite, once a test fails, the execution is paused and ...