【问题标题】:org.openqa.selenium.ElementNotInteractableException: Cannot click on elementorg.openqa.selenium.ElementNotInteractableException:无法点击元素
【发布时间】:2018-04-02 08:39:29
【问题描述】:

我正在尝试单击 Web 应用程序中的下拉菜单,然后单击 DIV 中的子项。下面是我试图执行的代码。

WebElement mnuElement;
WebElement submnuElement;

mnuElement = driver.findElement(By.id("CollectorsTab"));
//  Thread.sleep(3000);

submnuElement = driver.findElement(By.id("IdentityCollectorsTab"));

Actions builder = new Actions(driver);
// Move cursor to the Main Menu Element
builder.moveToElement(mnuElement).perform();
// Pause 2 Seconds for submenu to be displayed
TimeUnit.SECONDS.sleep(2); //Pause 2 seconds
// Clicking on the Hidden submnuElement
submnuElement.click();

我已经阅读了一些关于尝试更多等待的问题,我也尝试过,但我总是遇到错误。

Exception in thread "main" org.openqa.selenium.ElementNotInteractableException: Cannot click on element
Build info: version: '3.6.0', revision: '6fbf3ec767', time: '2017-09-27T16:15:40.131Z'
System info: host: 'UKPC31732', ip: '172.31.1.202', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_144'
Driver info: org.openqa.selenium.ie.InternetExplorerDriver
Capabilities [{acceptInsecureCerts=false, browserVersion=11, se:ieOptions={nativeEvents=true, browserAttachTimeout=0, ie.ensureCleanSession=false, elementScrollBehavior=0, enablePersistentHover=true, ie.browserCommandLineSwitches=, ie.forceCreateProcessApi=false, requireWindowFocus=false, initialBrowserUrl=http://localhost:1486/, ignoreZoomSetting=false, ie.fileUploadDialogTimeout=3000, ignoreProtectedModeSettings=false}, browserName=internet explorer, pageLoadStrategy=normal, javascriptEnabled=true, platformName=WINDOWS, setWindowRect=true, platform=WINDOWS}]
Session ID: e6579c86-fd88-4ce0-8820-1d4c644ba7ee
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:185)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:120)
    at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:49)
    at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:164)
    at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:83)
    at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:586)
    at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:279)
    at org.openqa.selenium.remote.RemoteWebElement.click(RemoteWebElement.java:83)
    at FlowIAM.main(FlowIAM.java:67)

【问题讨论】:

    标签: java selenium selenium-webdriver automation


    【解决方案1】:

    试试下面的代码来点击子菜单

    WebElement mnuElement;
    WebElement submnuElement;
    
    mnuElement = driver.findElement(By.id("CollectorsTab"));
    submnuElement = driver.findElement(By.id("IdentityCollectorsTab"));
    
    Actions action = new Actions(driver);
    action.moveToElement(mnuElement).clickAndHold(submnuElement).click().build().perform();
    

    有时我们需要单击并按住,然后必须单击子菜单。希望这段代码有帮助

    【讨论】:

    • 谢谢 这也有效!这与我刚刚尝试的相似。
    猜你喜欢
    • 2018-10-08
    • 2019-09-17
    • 2019-12-19
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多