[wtr-general] (webdriver) Chrome 34 displays the banner message you are using an unsupported command-line flag --ignore-certificate-errors

2014-06-09 Thread Super Kevy
Chrome has upgraded to Version 34.x and when I run watir-webdriver I see the that Chrome 34 displays the banner message you are using an unsupported command-line flag --ignore-certificate-errors Chromedriver --version reports 2.10.267521 browser = Watir::Browser.new ( :chrome, :switches=%w[

Re: [wtr-general] webdriver-user-agent gem usage and watir

2013-02-22 Thread Ragavan Ambighananthan
thanks Željko, i have created an issue - https://github.com/alisterscott/webdriver-user-agent/issues/6 On Thursday, 21 February 2013 16:14:04 UTC, Željko Filipin wrote: On Thu, Feb 21, 2013 at 4:21 AM, Ragavan Ambighananthan eelam@gmail.com javascript: wrote: I am using

[wtr-general] webdriver-user-agent gem usage and watir

2013-02-21 Thread Ragavan Ambighananthan
Hi I am using webdriver-user-agent mentioned here - http://watirwebdriver.com/mobile-devices/ This is the code we are using when trying out. We are running this on Chrome/FF http_client = Selenium::WebDriver::Remote::Http::Default.new http_client.timeout = HTTP_TIMEOUT profile =

Re: [wtr-general] webdriver-user-agent gem usage and watir

2013-02-21 Thread Željko Filipin
On Thu, Feb 21, 2013 at 4:21 AM, Ragavan Ambighananthan eelam.raga...@gmail.com wrote: I am using webdriver-user-agent mentioned here - http://watirwebdriver.com/mobile-devices/ If you think you have found a bug, report it here: https://github.com/alisterscott/webdriver-user-agent/issues

Re: [wtr-general] webdriver

2012-11-05 Thread Željko Filipin
On Sun, Nov 4, 2012 at 6:36 AM, sivam sivamma...@gmail.com wrote: If im wrong can you tell me how to set it. No, C:\WebDrivers is not in your PATH. Both C:\Ruby192\bin and C:\Ruby193\bin are in your PATH so you can put the file there. Or, if you want to add C:\WebDrivers to PATH this could

Re: [wtr-general] webdriver

2012-11-05 Thread sivam
Thanks a lot.. It worked fine for me.. On Monday, 5 November 2012 14:23:54 UTC+5:30, Željko Filipin wrote: On Sun, Nov 4, 2012 at 6:36 AM, sivam sivam...@gmail.com javascript: wrote: If im wrong can you tell me how to set it. No, C:\WebDrivers is not in your PATH. Both

[wtr-general] webdriver

2012-11-03 Thread sivam
Hi, Im new to Watir-webdriver and im facing some problems with installation. I have installed selenium-webdriver-2.26.0 and for opening a webpage i have received the below error message. C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.26.0/lib/selenium/webdriver/ie/server.rb:13:in

Re: [wtr-general] webdriver

2012-11-03 Thread Željko Filipin
On Sat, Nov 3, 2012 at 8:10 PM, sivam sivamma...@gmail.com wrote: Please download the IEDriverServer from http://code.google.com/p/selenium/downloads/list and place the executable on your PATH. Did you do this? Željko -- filipin.eu -- Before posting, please read http://watir.com/support. In

Re: [wtr-general] webdriver

2012-11-03 Thread sivam
I did the above things and even i followed the steps provided in that page. I pasted the IEDriverServer.exe in the C:\WebDrivers path My server.rb contains the below code module Selenium module WebDriver module IE class Server STOP_TIMEOUT = 5 def self.get

Re: [wtr-general] webdriver

2012-11-03 Thread Željko Filipin
On Sat, Nov 3, 2012 at 8:44 PM, sivam sivamma...@gmail.com wrote: I pasted the IEDriverServer.exe in the C:\WebDrivers path Is C:\WebDrivers in your PATH environment variable? What do you get when you type this in command prompt? path Željko -- Before posting, please read

Re: [wtr-general] webdriver

2012-11-03 Thread sivam
Yes.. I am getting the below things in command prompt.. C:\WebDriverspath PATH=C:\Ruby193\bin;C:\Program Files (x86)\PC Connectivity Solution\;c:\ruby\bin ;C:\Tcl\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Progr am Files (x86)\Common Files\Microsoft Shared\Windows

[wtr-general] Webdriver failure on chromedriver. You may need to update chromedriver.exe

2012-08-13 Thread Super Kevy
Just a FYI to the group as my chrome tests started failing. The current version is 22 SystemTest.rb # Checks if the chromiumdriver.exe needs updating # If the script fails chromedriver.exe needs to be updated to version 22 # Downloads available at

Re: [wtr-general] Webdriver and offline usage.

2012-07-13 Thread Željko Filipin
On Fri, Jul 13, 2012 at 2:55 AM, Daniel P. Clark 6ft...@gmail.com wrote: Why does Watir-webdriver not work when the computer isn't connected to the internet? I am not sure what could be the problem. I can open Firefox from IRB using watir-webdriver on my mac when I am not connected to the

[wtr-general] Webdriver cookies domain limitation

2012-06-12 Thread Abe Heward
Does anyone know if the limitation of the cookies feature--wherein it only shows you the cookies for the domain of the page you're on--is going to be changed any time soon? My use case is: Company A has a web page that, when visited, generates a cookie for Company B, because Company A is a

[wtr-general] webdriver plugin permission information bar

2012-03-27 Thread Dan
I'm wondering if anyone has a strategy for dealing with the plugin permission information bar in webdriver? I'm assuming I can simply disable them via profiles with Firefox and Chrome, but that's not an option with IE. Is there a way to interact with this bar via watir-webdriver or perhaps

Re: [wtr-general] Webdriver : when i have to grab the id using pattern match it fails for firefox

2011-12-09 Thread Željko Filipin
On Fri, Dec 9, 2011 at 12:56 AM, Bhavesh bhavesh1_sha...@yahoo.com wrote: so to collect the id's, i go to source of that page and grab the id like : $_ = $ie.html if /DIV class.*cell-inner.*id=(\S*).*dot.png.*#{fsname}/ printIDInfo(FS ID, $1) Why aren't you using watir api?

[wtr-general] Webdriver : when i have to grab the id using pattern match it fails for firefox

2011-12-08 Thread Bhavesh
Hi, I have to grab id's for some of the fileds by pattern matching, because these are dynamic. so to collect the id's, i go to source of that page and grab the id like : $_ = $ie.html if /DIV class.*cell-inner.*id=(\S*).*dot.png.*#{fsname}/ printIDInfo(FS ID, $1) This is

[wtr-general] webdriver - find a window

2011-12-07 Thread hillary
Is there a webdriver equivalent to window.find in watir? I'm trying to assert that a window has been closed. So for my test, it passes if it can't find the window. In watir i used the following code: browser = Watir::Browser.attach(:url, /Account.aspx/) browser.image(:id,

Re: [wtr-general] webdriver - find a window

2011-12-07 Thread bis
https://github.com/jarib/watirspec/blob/watir2/window_switching_spec.rb I have not messed with this but as soon as i get a chance ill write something up On Wed, Dec 7, 2011 at 12:53 PM, hillary weimar1...@gmail.com wrote: Is there a webdriver equivalent to window.find in watir? I'm trying to

[wtr-general] webdriver javascript pop-up

2011-10-25 Thread Dan
Hello, I've tried to implement the dialog handling as described here on http://watirwebdriver.com/javascript-dialogs/ using the example at http://www.w3schools.com/js/js_popup.asp, but it doesn't seem to work. I believe the application I'm working on is using the same approach that this

Re: [wtr-general] webdriver javascript pop-up

2011-10-25 Thread Cliff Cyphers
I've found that the fire_event can be very problematic which extensions/alerts is using. watir-webdriver will be updated to use selenium-webdriver's switch_to in the near future. But in the mean time you can take a look at handling this buy adding an alert box helper to Watir:

Re: [wtr-general] webdriver javascript pop-up

2011-10-25 Thread Dan Franko
Cliff, Seriously. This is amazing. It's working great. I really appreciate it. Dan On Tue, Oct 25, 2011 at 12:48 PM, Cliff Cyphers cliff.cyph...@gmail.comwrote: I've found that the fire_event can be very problematic which extensions/alerts is using. watir-webdriver will be updated to use

[wtr-general] Webdriver problems on Chrome

2011-02-16 Thread xguarder
I just started using watir-webdriver, and was able to make it work well with Firefox. I am running into some problems on Chrome though (all on Mac OSX). Here is what I am observing. I type the following into irb, and all is good so far... irb(main):001:0 require 'rubygems' = true irb(main):002:0

[wtr-general] WebDriver

2009-08-19 Thread Pallavi Sharma
Hi Has anyone used Webdriver[http://code.google.com/p/webdriver/] as a automation tool here?? Is there any comparisions of the same available with watir? If used, can anyone share their experience with the tool? Thanks Pallavi. --~--~-~--~~~---~--~~ You