org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with

前端 未结 7 1786
终归单人心
终归单人心 2020-12-30 13:33

I am trying to execute below Selenium Web driver script, But I am getting org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may n

7条回答
  •  猫巷女王i
    2020-12-30 14:07

    I guess you are trying to click on hyperlinks, if you are getting 'ElementNotVisibleException' this means that elements might be hidden. Does it take long time for the elements with locator 'a.uiv2-add-button.a2c' to render on the UI after you select a Category from the left panel? If yes than interaction wiith non visible elements will always throw 'ElementNotVisibleException'

提交回复
热议问题