I am creating a scenario in Ride.py While ride.py gives me the code generated by the included Selenium2Library commands, I wish to do some additional code for the application testing. Can I add my own code? Will normal selenium/java/c#/python code work ?
I am new and I could not find anything online
Select Tab
[Arguments] ${tabName}
${selectTabWait} = Set Selenium Timeout 10 seconds
Set Selenium Implicit Wait ${selectTabWait}
Wait Until Page Contains Element id:foo
Select Frame id:foo
Wait Until Element is Visible //span[contains(text(),'${tabName}')]
Click Element //span[contains(text(),'${tabName}')]
Unselect Frame
Can I add any selenium code in above statements?