From: David Nightingale Date: 2006-08-24T04:41:22+09:00 Subject: "Do you want to close this Window?" Popup woes... Hello, I am new at this and using a co-worker app to record test scripts in Ruby. Its called Watir. The script I have logs into a test account for online banking. It then hits the logoff URL which sends you to a page with a "Close Window" or "Login" button. The close button does this: javascript:doClose() Everything works great except the close window part. When you click the close button a Window IE Popup comes up saying a program is attempting to close the window. Do you want to close it? Yes or No. How in the heck to I go about closing this window with the script. Here is what I have, though keep i mind I have ommitted the account information. require 'watir' include Watir require 'test/unit' class TC_recorded < Test::Unit::TestCase def test_recorded ie = IE.new ie.goto('http://www.capitalonebank.com/') ie.text_field(:name, 'txtUserID').set('user id here') ie.text_field(:name, 'txtPassword').set('password here') ie.button(:name, 'login').click ie.text_field(:id, 'txtSecurityAnswer1').set('answer here') ie.button(:id, 'btnLogIn').click ie.goto('https://onlinebanking.capitalone.com/CAPITALONE/Logout.aspx') ie.goto('javascript:top.window.close()') end end This is driving me crazy so any help would be great! Even if I could somehow click the X in the right corner with code, that would be a way to avoid the question in the first place! But I dont know how. David -- Posted via http://www.ruby-forum.com/.