使用C#使用selenium web驱动程序处理和读取弹出窗口

时间:2018-01-31 13:29:50

标签: c# selenium-webdriver

我在C#中使用selenium web驱动程序。我有以下窗口:

重置窗口

enter image description here

当我使用selenium webdriver点击Update按钮时,我得到以下弹出窗口:

重置窗口弹出

enter image description here

我尝试了以下代码,但它无效:

 IAlert alert = driverFF.SwitchTo().Alert();

我也尝试了这个,但它也不起作用:

 IAlert alert = driverFF.SwitchTo().window(handle); //I don't know handle of popup too

我想将弹出文本作为字符串或文本消息读取并将其存储在变量中。 请指导。感谢

0 个答案:

没有答案