selenium.open() becomes unresponsive in an iterative test

后端 未结 2 480
后悔当初
后悔当初 2021-01-28 19:21

I have a set of test steps that I have to execute with different parameters. I have scripted this in Eclipse/TestNG, driven by the parameters supplied via an excel sheet. Now,

相关标签:
2条回答
  • 2021-01-28 19:25

    I'm still not sure of what causes this in FF. To work around, I upgraded to the alpha release of the selenium server 2.0.

    0 讨论(0)
  • 2021-01-28 19:38

    Add below line above selenium.open() method

    selenium.setTimeout("0");
    
    0 讨论(0)
提交回复
热议问题