gpt4 book ai didi

java - 如何在 WebDriver(FirefoxDriver) 测试中关闭或禁用基本身份验证弹出窗口

转载 作者:行者123 更新时间:2023-11-29 09:18:30 25 4
gpt4 key购买 nike

我正在使用 WebDriver 测试我的应用程序,但某些页面试图从另一台服务器获取资源,这需要身份验证。我的测试不需要这些资源,而且我目前还没有证书。当弹出窗口出现时,它会停止测试运​​行。

我尝试使用 webDriver.switchTo().alert().dismiss(); 关闭弹出窗口,但显然它不是警报。

我还尝试使用 firefox 配置文件禁用弹出窗口:

FirefoxProfile profile = new FirefoxProfile();

profile.setPreference("capability.policy.policynames", "strict") ;
profile.setPreference("capability.policy.strict.sites", "http://localhost:9000") ;
profile.setPreference("capability.policy.strict.Window.alert", "noAccess") ;
profile.setPreference("capability.policy.strict.Window.confirm", "noAccess") ;
profile.setPreference("capability.policy.strict.Window.prompt", "noAccess") ;
FirefoxDriver driver = new FirefoxDriver(profile);

但这并没有帮助。

提前致谢。

最佳答案

我认为网络驱动程序的设计并没有考虑到上述意图,而且我也没有看到在不久的将来会提供任何此类 api。他们想要测试其行为是否与人类看到页面的方式完全一致。

话虽如此,您可以控制要针对其运行测试的网站。您不能自己阻止这些资源吗?可能是因为使用了一些配置设置,当配置中的标志设置为 true 时,这些设置不会加载资源。

该设置可能类似于 IsSeleniumInstance。

希望这对您有所帮助。

关于java - 如何在 WebDriver(FirefoxDriver) 测试中关闭或禁用基本身份验证弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8008072/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com