unknown property or method: `readyState'
HRESULT error code:0x80010108
The object invoked has disconnected from its clients. (NoMethodError)
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/browser.rb:603:in `method_missing'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/browser.rb:603:in `block in wait'
C:/Opt/Ruby/Ruby193/lib/ruby/1.9.1/timeout.rb:69:in `timeout'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/browser.rb:597:in `wait'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/container.rb:56:in `wait'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/container.rb:56:in `wait'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/element.rb:210:in `block in fire_event'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/element.rb:489:in `perform_action'
C:/Opt/Ruby/Ruby193/lib/ruby/gems/1.9.1/gems/watir-classic-4.3.0/lib/watir-classic/element.rb:210:in `fire_event'
C:/Jenkins/workspace/UI_Automation_Dev/trunk/Automation/ocelot/lib/ocelot/extensions.rb:400:in `method_missing'
I am getting the above error when executing in a virtual node through Jenkins. When I run the same in my local machine manually, there's no error. Here's the block where its throwing the error.
browser.frame(id: 'Iframe1').table(id: 'reviewHeader').td(id: 'RESAVE').when_present.click #clicking Save button
sleep(3) # Wait after Save so the 3rd party app. window closes
browser.window(title: /user/).use # Switch back to the main app window
browser.wait_for_page_load
Here I click the save button, which closes the tab. Then, I sleep for 3 seconds. Then, I use the window having title 'user', and I wait until the page is loaded. The error shows up after I click the Save button; it does not switch to the window. I even tried giving more/less sleep time, but it didn't work. BTW I am using Watir Classic.
Reproducing the Exception
Looking at where the exception occurred, I was able to simulate the exception by:
1. Creating and opening a window with HTML (this is the main window):
2. Creating and opening a window with a file name of "popup.htm" and HTML (this is the popup window):
3. Running the following Watir script with manual interaction:
Solution
The exception is occurring in this part of the
Browser#wait
method, specifically the@ie.readyState
command:The code was written to rescue the window being closed. However, I am not sure why it only includes
WIN32OLERuntimeError
when we are getting aNoMethodError
. Given the age of this code, it is possible that the underlying WIN32OLE has changed its return type over time or it could just be another possible exception. At any rate, monkey patching thewait
method to also handleNoMethodError
will address the exception.If the problem only occurs on this one step of a single script, the safest solution might just be to rescue the exception in the one spot: