Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've searched and searched for this, but I can't seem to get this automation to work. Having used all of the basic authentication code on the OpenQA site, I still cannot get the authentication box to work.

I'm using IE8, with a website that has HTTPS enabled.

By using Watir I'm able to open IE to the correct page, but nothing I try allows me to enter any content into the login form.

Here is the code I've whittled it down to:

require 'watir'

url = 'https://thewebsite.com' 
@username = 'myusername'
@password = 'mypassword' 

browser = Watir::Browser.new
browser.goto url
sleep 5 
Watir.autoit.WinWait('Blank Page')
Watir.autoit.Send(@username)
Watir.autoit.Send('{TAB}')
Watir.autoit.Send(@password)
Watir.autoit.Send('{ENTER}')

Does anyone have any suggestions, or links? A lot of the information I've found on the OpenQA site seems quite out of date.

Thanks

share|improve this question
can you provide us an example of a public site that has such authentication? Obviously in order to automate this section we don't need to be able to actually access the site, but if we can get the authentication dialog, enter data and click the button (even if our credentials are rejected) it would be good enough. Without an example it's hard for people to experiment or debug the existing code. – Chuck van der Linden Nov 25 '11 at 21:35
Firstly, what version of Watir are you using? Secondly, what exactly happens when you try the code you gave above. Knowing what you tried is good, but without details on what happens (such as any error messages) still leaves us with not enough useful info to figure out where your approach is going wrong on you. – Chuck van der Linden Nov 25 '11 at 21:38
Also, you may want to start accepting answers to your questions. – Mark Thomas Nov 26 '11 at 3:16
Not sure if you'll be able to get onto this site (you may have to be on the network) evolve.warwickshire.nhs.uk/ArdenDev – Josh Nov 28 '11 at 16:40
Watir version 2.02. Ruby 1.9.2p290. IE Opens, page loads, nothing is inputted into the boxes. This is the resulting error in the console: ...evolve.rb:14:in '<main>' : undefined method 'autoit' for Watir:Module(NoMethodError) Now I may be being stupid, I've installed autoit, though I fear I may have left out a vital part.. – Josh Nov 28 '11 at 16:45
show 5 more comments

3 Answers

Did you try RAutomation instead of autoit?

share|improve this answer
Can you give me an example of simple authentication? – Josh Nov 25 '11 at 12:41
I never had to deal with popups, so I do not have any example code. I have just heard that watir is no longer using autoit, but rautomation for dealing with popups. – Željko Filipin Nov 25 '11 at 16:26

Have you tried using the url with user and pass in it? like url = 'https://username:password@thewebsite.com', you can try visiting the url manually in a browser, if it works manually it should work in your script too.

share|improve this answer
Sadly this doesn't work. – Josh Dec 22 '11 at 16:32

I came here having the same problem, although it looks like the answer is different due to the latest version of Watir and watir-webdriver. I'll show what worked for me using:

watir (4.0.2 x86-mingw32)
watir-classic (3.6.0)
watir-webdriver (0.6.2)

Watir doesn't have autoit built in any more and it looks like the other suggestion I found (require 'watir/ie') doesn't work any more either. In the spirit of solving this with the original tech requested:

Make sure after installation AutoIT has been registered with windows. Go to the AutotIT dll (installed with the rautomation gem mentioned above, think Watir installed this)

cd C:\Ruby193\lib\ruby\gems\1.9.1\gems\rautomation-0.8.0\ext\AutoItX
regsvr32 AutoItX3.dll

Then the code below should work

require 'watir'
require 'win32ole'

$b = Watir::Browser.new :ie
begin
    $b.goto( 'http://10.254.157.34:8383/mywebsite/stuff.html');
rescue Exception => e
    puts "Trapped Error, expecting modal dialog exception"
    puts e.backtrace 
    puts "Continuing"
end

login_title = "Windows Security" #For Windows 7, dialog title for anything else
username = "myuser"
password = "mypassword"

sleep 1 #Just in case
au3 = WIN32OLE.new("AutoItX3.Control")
win_exists = au3.WinWait(login_title, "", 5)    

if (win_exists > 0)
    au3.WinActivate(login_title)
    au3.Send('!u')
    au3.Send(username)
    au3.Send('{TAB}')
    au3.Send(password)
    au3.Send('{ENTER}')
end
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.