Is it possible to pass 3 parameters into a selenium command via IDE? e.g.
Selenium.prototype.doSetList =function(array1,array2,storeAsVar)
{
....
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not without making your own plug-in.
http://seleniumhq.org/projects/ide/plugins.html
There are only 2 parameters per command. Just put the 2nd and 3rd into the 2nd and delimit them with a character that will never get used in the command. I used a pipe character.
Example:
Command: setList
Target: valueOfArray1Argument
Value: valueOfArray2Argument|valueOfStoreAsVarArgument