如何使用 selenium-rc 在 Python 中自动进行 Windows 身份验证?

发布于 2024-12-06 09:05:34 字数 580 浏览 0 评论 0原文

我正在使用 python 为我的服务器代码编写 selenium-rc 测试代码。服务器应用程序是用 ASP.NET 编写的,并配置了“Windows 身份验证”。我的 python 代码的执行步骤如下所示:

  1. 启动 python main()
  2. 创建 selenium 实例(比如 sel)
  3. 通过调用 sel.start() 启动 selenium 通过
  4. 调用 sel.open(url) 使用 selenium 实例打开目标 URL )
  5. 此时会弹出 Windows 身份验证对话框
  6. sel.open(url) 默认设置为在 30 秒内超时,而身份验证过程等待输入用户名和密码。

  7. 此时,我无法通过selenium-rc接口找到任何方法让它识别弹出的对话框。我搜索了一下,发现 selenium-rc 接口(在 python 中)仅用于 http 身份验证,而不是 Windows 身份验证。

我尝试在 Selenium 中使用 autoit 但仍然没有运气。

你们中有人能解释一下吗?

提前致谢。

马文兴

I am using python to write selenium-rc test code for my server code. The server application is written with ASP.NET and is configured with "Windows authentication". The execution steps of my python code look like the following:

  1. Start python main()
  2. Create the selenium instance (say sel)
  3. Start the selenium by calling sel.start()
  4. Open the target URL with the selenium instance via calling sel.open(url)
  5. Windows authentication dialog box pops up at this time
  6. sel.open(url) is, by default, set to time out in 30 seconds while the authentication process is pending for input of username and password.

  7. At this point, I could not find any way through selenium-rc interface to make it recognize the pop up dialog box. I google around and find out that the selenium-rc interface (in python) is for http authentication only- not Windows authentication.

I have tried to use autoit within selenium but still without luck.

Can any of you shed some light on this?

Thanks in advance.

marvinchen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清风疏影 2024-12-13 09:05:34

Selenium 在识别该窗口时遇到问题(尝试搜索 HTTP 基本身份验证以获取更多详细信息)

基本上,唯一可行的是将用户名和密码放入 URL 请求本身。假设您的应用程序在 http://example.com 上运行,新网址应如下所示:

 http://username:[email protected]

此解决方案对我有用,但是仅使用 Google Chrome 作为默认浏览器进行测试

Selenium has issues recognizing that window (try to search HTTP Basic Authentification for more details about it)

Basically, only thing which kinda works is to put username and password into URL request itself. Assuming your application runs on http://example.com the new url should look like this:

 http://username:[email protected]

This solution works for me, but only using Google Chrome as a default browser for testing

千紇 2024-12-13 09:05:34

现在你可以轻松地解决这个问题,除非我在过去几个月错过了一些东西,否则只有 FireFox 可以为你解决这个问题。

阅读这篇博客如何整理它:
http://applicationtestingtips.wordpress.com/2009/ 12/21/seleniumrc-handle-windows-authentication-firefox/

There is now way you can sort it out easy and at this point unless I have missed something last few months it will only be FireFox who can fix this for you.

Read this blog how to sort it out:
http://applicationtestingtips.wordpress.com/2009/12/21/seleniumrc-handle-windows-authentication-firefox/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文