我有一个测试,我需要点击一个禁用的按钮。我正在使用 Actions 类来执行此操作。当用户单击按钮时,会生成警报。下面是我写的代码:
Actions mouseActions = new Actions(driver);
mouseActions.moveToElement(driver.findElement(By.id("disabled_element_id"))).click().build().perform();
然后我尝试切换到出现异常的警报:线程“主”org.openqa.selenium.NoAlertPresentException 中的异常:不存在警报。