Manual input from user while running selenium IDE script

后端 未结 9 1500
死守一世寂寞
死守一世寂寞 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 19:59

    Just a minor modification to Stephen Binns response. I'm running Selenium IDE 2.5.0 and my test looks like this:

    
        store
        javascript{prompt("password")}
        password
    
    

    Without the javascript{} it wouldn't prompt.

提交回复
热议问题