Manual input from user while running selenium IDE script

后端 未结 9 1377
死守一世寂寞
死守一世寂寞 2021-02-05 19:50

can user is able to give manual input while running selenium IDE script? For ex. If there is name field then can we open input box everytime script runs so that user can give hi

9条回答
  •  你的背包
    2021-02-05 20:00

    none of the accepted answers worked for me. Here is how I solved it:

    Create new command (at the top to store my variable that I wanted to use in 30 places.)

    • Command: execute script
    • Target: return "Test Iteration #13"
    • Value: VarName

    then in the 30 places I wanted to use that variable. I put this

    • Value: Enter some text into the web input box and my test iteration number is ${VarName}

提交回复
热议问题