[wtr-general] Did a Firefox update just break Watir Webdriver?

2015-03-03 Thread Philip Undisclosed
Wondering if others are seeing this or if it's specific to my configuration. irb(main):003:0 b = Watir::Browser.new :firefox Selenium::WebDriver::Error::WebDriverError: unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) from

[wtr-general] Re: Check datatypes

2015-03-03 Thread Chuck van der Linden
On Monday, March 2, 2015 at 10:35:27 PM UTC-8, Ping-0t wrote: Hello Guys, Can someone help me with this: require 'rubygems' require 'watir' require 'test/unit' require 'win32ole' gem test-unit class View_OrderDetails Test::Unit::TestCase $sales_order_no = SO1 # $fields

[wtr-general] Re: Did a Firefox update just break Watir Webdriver?

2015-03-03 Thread Chuck van der Linden
On Tuesday, March 3, 2015 at 12:22:12 AM UTC-8, Philip Undisclosed wrote: Wondering if others are seeing this or if it's specific to my configuration. irb(main):003:0 b = Watir::Browser.new :firefox Selenium::WebDriver::Error::WebDriverError: unable to obtain stable firefox connection in

[wtr-general] Re: automating httpwatch with watir

2015-03-03 Thread Justin Ko
The API for both Watir-Classic and HttpWatch have changed since that example was written. Updating to the latest API, the script would be: require 'win32ole' require 'watir-classic' # Open the IE browser using Watir ie = Watir::Browser.new # Attach HttpWatch control =

[wtr-general] Re: Cant find element when i tried writing a command to click on play icon for embedded player

2015-03-03 Thread jackstaposition
If the player is in iframe, what Super Kevy wrote is correct. This worked for me: frame = @browser.iframe(:id, 'quote-frame') frame.text_field(:id, 'travelerAge_1').fire_event(onfocus) frame.text_field(:id, 'travelerAge_1').send_keys traveller_1 or if you want to use any elements in the iframe

[wtr-general] Re: Can't get the content generated by ajax response

2015-03-03 Thread Chuck van der Linden
On Tuesday, March 3, 2015 at 12:28:05 AM UTC-8, Gao Boswell wrote: I have a spider that want to crawl some data of a movie site, but I found that these data was generated through ajax after the page loaded,and my code is: require 'nokogiri' require 'watir-webdriver' browser =

[wtr-general] Can't get the content generated by ajax response

2015-03-03 Thread Gao Boswell
I have a spider that want to crawl some data of a movie site, but I found that these data was generated through ajax after the page loaded,and my code is: require 'nokogiri' require 'watir-webdriver' browser = Watir::Browser.new browser.goto

Re: [wtr-general] Re: Did a Firefox update just break Watir Webdriver?

2015-03-03 Thread Željko Filipin
On Tue, Mar 3, 2015 at 9:44 AM, Chuck van der Linden sqa...@gmail.com wrote: finding older regular FF releases can be, um, fun https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/ Željko -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be