Questions tagged [robotframework-pythonremoteserver]

The Python Remote Server website can be found under:

https://github.com/robotframework/PythonRemoteServer

7 questions
1
vote
1 answer

Robot Framework - SSH library - Editing a file on remote server

I am writing a test case in Robot Framework where in, I have to either copy the file from the local machine (windows) to the remote server (linux) or create a new one at the location. I have used multiple sudo su - command to switch users to root…
1
vote
1 answer

Redirect robot.api.logger calls to file as messages are invisible due to XML-RPC

In one of my projects we are using Robot Framework with custom keyword libraries in a complex test environment using assorted ECUs and PCs. One keyword library must be controlled by a python remote server via XML-RPC, as it has to be on a different…
0
votes
0 answers

Unable to drag and drop using robot framework. UI is built with angular cdk. The application is based on electron app

I am facing an issue in drag and drop using robot framework. I am automating drag and drop with a desktop application which is built on electron open source framework. The UI contains Available section and Output section which is implemented as…
0
votes
3 answers

how to locate an id of the button to click when id is dynamic in robot framework

I am new to robot framework and learned few basics of robot framework. when i tried to create a new account in facebook , i have used id element of "create new account" but everytime new id is generated when its open an new page. can someone help to…
0
votes
1 answer

How to generate report.html for every testsuit( .robot file) in RoboTFramework?

I,m using single pycharm project to run different test files for a particular website. ex -: I'm having robot files with test cases such as loginTest.robot , purchasetest.robot , signinwith_facebook.robot When I run the code for each robot file, the…
0
votes
1 answer

How to use Browserstack Automate API for mark test status in ROBOT Framework PyCharm

I tried with CURL given in BrowserStack for mark tests as fail/pass. I have implemented the automation code with the robot framework in pycharm. I added the test status for each test case in my test file. Used curl curl -u ":" -X PUT…
-1
votes
1 answer

Text verification case sensitive on macOS Robot Framework?

For example We need to validate UI Text "SUMMARY PAGE" when we execute script on Windows for getText it will return "SUMMARY PAGE" but same script executed on macOS it will return "Summary Page" and test fail on macOS terminal. Using Python /…