[wtr-general] CHROME DRIVER FOR WIN64 is needed on wiki page

2013-04-23 Thread HoodRules Street Safety
*I am receiving the below error in my chromedriver.log and I suspect it is because I don't have the Chrome Win64. * [0422/115838:INFO:chromedriver_server.cc(76)] Handling request: /session

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread watir webdriver
Any one can help on this? On Wednesday, April 17, 2013, watir webdriver wrote: First of all thanks for the response...Plz find cucumber test,Step def,application screenshot,html code and error msg as below. *Cucumber test :* In my application I've many algorithms out of them I've to drag

[wtr-general] Check color link

2013-04-23 Thread LuisE
Hello, My name Luis, I want to do a watir script for checking when I click a link, this link changes color a specific color but I don't to do. Is it possible? Thanks -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice.

Re: [wtr-general] Check color link

2013-04-23 Thread Željko Filipin
On Tue, Apr 23, 2013 at 12:16 PM, LuisE luises...@gmail.com wrote: I want to do a watir script for checking when I click a link, this link changes color a specific color but I don't to do. Is it possible? You are aware of the fact that in that case you are _not_ testing your application? You

Re: [wtr-general] Check color link

2013-04-23 Thread LuisE
No, In my aplication when I select a click on a link others link fields change color. I tell you a sample about it: I'm testing video application, I have a link that when i click on it, I watch video from 4 cameras. The cameras are showing video change color their links. I want to check it. Do

Re: [wtr-general] Check color link

2013-04-23 Thread Željko Filipin
On Tue, Apr 23, 2013 at 12:37 PM, LuisE luises...@gmail.com wrote: Do you understand? No. Please provide link to the page or relevant HTML. Željko -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com

Re: [wtr-general] Check color link

2013-04-23 Thread LuisE
For example, I have a link with class=blue and I click on it and his class changes to class=yellow how Can I check it? Can I ask about color or image in my html document? El martes, 23 de abril de 2013 12:44:02 UTC+2, Željko Filipin escribió: On Tue, Apr 23, 2013 at 12:37 PM, LuisE

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread Rich Downie
driver.action.drag_and_drop(rule, slot).perform http://selenium.googlecode.com/svn/trunk/docs/api/rb/Selenium/WebDriver/ActionBuilder.html#drag_and_drop-instance_method On Tue, Apr 23, 2013 at 4:07 AM, watir webdriver watirwebdriver...@gmail.com wrote: Any one can help on this? On

Re: [wtr-general] Check color link

2013-04-23 Thread LuisE
my web: http://vx.vtdemo.net/ user: operator password: operator after click on https://lh6.googleusercontent.com/-7mQ4JVejYAI/UXZrbuBdOJI/AT0/6lX4Ifo1mqI/s1600/cuadrantes.png Now you can see how camera colors change El martes, 23 de abril de 2013 13:01:06 UTC+2, LuisE escribió: For

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread watir webdriver
Thanks Rich for your email but its throwing below exception...Can you plz tell me where i've to define this driver element? undefined local variable or method `driver' for #Object:0x3f9dec0 (NameE rror) ./features/step_definitions/smartmanager_email_steps.rb:64:in `/^I drag ( .+) rule

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread Rich Downie
*driver* = whatever variable you use to declare Watir::Browser.new. For cucumber this variable should be declared in: *features/support/env.rb* require 'watir-webdriver' Before do *driver* = Watir::Browser.new end You may have: *browser* = Watir::Browser.new resulting in:

Re: [wtr-general] Check color link

2013-04-23 Thread Željko Filipin
On Tue, Apr 23, 2013 at 1:01 PM, LuisE luises...@gmail.com wrote: For example, I have a link with class=blue and I click on it and his class changes to class=yellow how Can I check it? Can I ask about color or image in my html document? Sure. Something like this should work:

[wtr-general] Re: CHROME DRIVER FOR WIN64 is needed on wiki page

2013-04-23 Thread Dan
There's not 64 bit Chrome on Windows so, the 32 bit chrome driver should be fine. http://www.chromium.org/nativeclient/design-documents/native-client-in-chrome-on-64-bit-windows Those messages below are informational, are you having some problem with watir/watir-webdriver? On Monday, April

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread watir webdriver
This time its throwing below exception : undefined method `action' for #Watir::Browser:0x3ff51a8 (NoMethodError) ./features/step_definitions/smartmanager_email_steps.rb:63:in `/^I drag ( +) rule to the position (\d+) slot$/' features\smart_manager_email_setup_05.feature:23:in `When

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread Rich Downie
Maybe try drag_and_drop_by ? # # Drag and drop this element by the given offsets. # Note that browser support may vary. # # @example #browser.div(:id = draggable).drag_and_drop_by 100, -200 # # @param [Fixnum] right_by # @param [Fixnum] down_by # def

Re: [wtr-general] Re: Drag and drop is not working after updating firefox to 20.0 -- Could not load native events component.

2013-04-23 Thread watir webdriver
Atlast got the solution for this issue..Its a bug in selenium webdriver (Issue-4478). Disabled the native events in hooks.rb as below : profile.native_events = false caps = Selenium::WebDriver::Remote::Capabilities.firefox(:native_events = false) On Tue, Apr 23, 2013 at 3:49 PM, Rich