量角器支持Windows身份验证弹出?

时间:2015-06-24 08:36:16

标签: protractor

有没有一种方法,Protractor支持IE和Chrome弹出的Windows身份验证,这对我的应用程序不起作用,“http://username:password@server.url/”,是否有任何其他方法可以处理弹出的窗口。

1 个答案:

答案 0 :(得分:0)

Chrome支持直接在网址中嵌入凭据,只能正常工作为“http://username:password@server.url/”。

然而,IE不支持将其作为安全问题,因此您可能必须编写如下的shell脚本:

set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.AppActivate "Windows Security"
WshShell.Sleep 500
WshShell.SendKeys "Username"
WshShell.SendKeys "{TAB}"
WshShell.SendKeys "password"
WshShell.SendKeys "{ENTER}"