如何处理这个弹出窗口?
How to handle this popup?
上图是我的弹窗图片,谁能指导我如何处理这个弹窗?
可以像对待任何其他警报一样对待此弹出窗口。您可以使用以下方式确认对话框(即单击“离开”):
browser.alert.ok
如果您不知道弹出窗口是否会出现,您可以检查它是否存在:
browser.alert.ok if browser.alert.present?
如果这不起作用,另一种方法是禁用卸载时调用的函数。确保在触发之前重写该函数。
# Remove the function
browser.execute_script("window.onbeforeunload = null")
# Then trigger the action that leaves the page
browser.link.click
上图是我的弹窗图片,谁能指导我如何处理这个弹窗?
可以像对待任何其他警报一样对待此弹出窗口。您可以使用以下方式确认对话框(即单击“离开”):
browser.alert.ok
如果您不知道弹出窗口是否会出现,您可以检查它是否存在:
browser.alert.ok if browser.alert.present?
如果这不起作用,另一种方法是禁用卸载时调用的函数。确保在触发之前重写该函数。
# Remove the function
browser.execute_script("window.onbeforeunload = null")
# Then trigger the action that leaves the page
browser.link.click