Selenium web driver: cannot be scrolled into view

前端 未结 4 1160
天涯浪人
天涯浪人 2020-11-29 10:13

I am using Selenium IDE and Selenium web driver testng in eclipse .. my testing is against ZK application ..

the test case works fine on Selenium IDE ..



        
4条回答
  •  一个人的身影
    2020-11-29 11:13

    Try to execute the script and click the element

    driver.executeScript("arguments[0].click();", element)
    

提交回复
热议问题