Reputation: 406
I created one test one test case in Ride using Robot framework. while running am getting the error.
I updated the path of python. I updated the library and Ride. I changed the folder and it didn't work
*** Settings ***
Documentation This is a simple test with Robot Framework
Library SeleniumLibrary
*** Variables ***
${SERVER} http://www.google.com
${BROWSER} chrome
${DELAY} 0
*** Keywords ***
Open Browser To Login Page
Open Browser ${SERVER} ${BROWSER}
S
Maximize Browser Window
Set Selenium Speed ${DELAY}
Expected Result should allow to run the test case.
Actual result and getting the "Error in Serializing"
Upvotes: 1
Views: 3073
Reputation: 1252
This is a issue in the Ride. It looks like once you add a test case as .robot and added a manual script, ride have a issue in saving the file as a Test Suite.
I guess this is the issue you are facing :
There are two workarounds to resolve the issue
Work around 1
With out adding the test steps soon after you created the test case,
Adding Test Suite and Test Case:
Editing Test Cases:
Work around 2
Add the test.robot file manually in your working directly. Then you'll be able to directly edit and save the test cases
Manual addition of test cases and editing:
Hope this helps Cheers
Upvotes: 2
Reputation: 1077
To install and run Robot framework IDE (RIDE) on windows, run following commands:
pip install robotframework
pip install robotframework-ride
python -m robotide.__init__
Upvotes: 3