switch_to.alert 切换到弹窗上的方法 switch_to.alert.text 得到弹窗的文本内容的方法 switch_to.alert.accept() 确认弹窗的方法 switch_to.alert.dismiss()取消弹窗的方法
时间: 2024-05-28 21:12:51 浏览: 116
Android 对话框sweet-alert-dialog
没错,`switch_to.alert`可以切换到弹窗上,`switch_to.alert.text`可以获取弹窗的文本内容,`switch_to.alert.accept()`可以确认弹窗,`switch_to.alert.dismiss()`可以取消弹窗。需要注意的是,这些方法只能在弹窗出现后才能调用,否则会抛出`NoAlertPresentException`异常。同时,只有在当前页面存在弹窗时才能切换到弹窗上,否则也会抛出异常。
阅读全文