请找附件图片,我需要从弹出式enter image description here
中选择继续购物答案 0 :(得分:1)
实际上,在你的情况下,它不是常规的浏览器弹出窗口。这只是Div实例的组合。 你可以尝试这样:
driver.findElement(By.id("fancy_notification_content")).findElement(By.className("continue_shopping")).click();
答案 1 :(得分:0)
popups处理程序是IAlert。
IAlert alert = driver.SwitchTo().Alert();
if (alert != null)
{
alert.Accept();
}
但我不知道是不是这样。