How to automate username/password fill for firefox authentication popup using selenium IDE

本小妞迷上赌 提交于 2019-11-29 15:45:47

I ended up using AutoIT with a login script containing the following and it worked:

WinWaitActive("Authentication Required")

Send("Username")

Send("{TAB}")

Send("Password")

Send("{ENTER}")

Support information for Firefox environment setup was found here:

http://www.passionatetester.com/2010/03/how-to-handle-windows-authentication.html

You could give the Firefox plugin Integrated Authentication for Firefox a try. After installing you can configure the plugin in the options menu of Firefox. Just add your site.com to the integrated authentication enabled sites and see whether it works for you. In my case it solved the problem.

Answer of your question you get from here

you have to create FF profile for selenium RC, you can create profile from here

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!