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 Downi

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 # d

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 # (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 I drag "Abandone Bask

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: *browser*.action

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 # (NameE rror) ./features/step_definitions/smartmanager_email_steps.rb:64:in `/^I drag "( .+)" rule to the positio

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 We

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 dra

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

2013-04-16 Thread Chuck van der Linden
That brings us back to "please show us the code that is causing the error.. " On Thursday, April 11, 2013 1:39:04 AM UTC-7, watir webdriver wrote: > > Hi Dan, > Thanks for letting me know. > I've updated selenium webdriver to 2.32.0 but still I'm facing the same > issue. > > On Thursday, April

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

2013-04-11 Thread watir webdriver
Hi Dan, Thanks for letting me know. I've updated selenium webdriver to 2.32.0 but still I'm facing the same issue. On Thursday, April 4, 2013 5:18:04 PM UTC+1, watir webdriver wrote: > > Hi there, > > Today I've updated my firefox 19.2 to 20.0 and drag and drop of the > element is not working.Th

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

2013-04-10 Thread Chuck van der Linden
Thanks for letting folks know about the update! On Wednesday, April 10, 2013 6:28:32 AM UTC-7, Dan wrote: > > Looks like there's a new version. Also, the safari extension, which is > awesome! > > 2.32.0 (2013-04-09) > === > > Safari: > * The Safari extension is now packaged wit

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

2013-04-10 Thread Dan
Looks like there's a new version. Also, the safari extension, which is awesome! 2.32.0 (2013-04-09) === Safari: * The Safari extension is now packaged with the gem and automatically installed (#5322) * Improved detection of the binary location on 64-bit windows (5273) Opera

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

2013-04-08 Thread Chuck van der Linden
Yeah it won't fix your problem with the current version, but it can at least give you a stable env that can be used to test YOUR stuff as opposed to what can sometimes amount to testing firefox's ability to update and break stuff vs webdriver's ability to adapt to those changes. On Saturday, Ap

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

2013-04-06 Thread watir webdriver
Hi Chuck, Thanks for the detailed explanation and suggestion.I'll give a try... On Thursday, April 4, 2013 5:18:04 PM UTC+1, watir webdriver wrote: > > Hi there, > > Today I've updated my firefox 19.2 to 20.0 and drag and drop of the > element is not working.Those tests were working on the earli

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

2013-04-05 Thread Chuck van der Linden
Testing against the moving target that is firefox can be a bit of a pain sometimes. What I generally recommend (especially for your primary CI tests if you are using a real (non-headless) browser is to use the firefox ESR (Extended Support Release). The ESR is only updated once a year. Y

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

2013-04-05 Thread watir webdriver
Thanks DanI'll downgrade to 19. On Thursday, April 4, 2013 5:18:04 PM UTC+1, watir webdriver wrote: > > Hi there, > > Today I've updated my firefox 19.2 to 20.0 and drag and drop of the > element is not working.Those tests were working on the earlier version. > Is the webdriver version not co

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

2013-04-05 Thread Dan
I don't see anything on the issue tracker that indicates a release date, but they are usually within a week or so as far as I remember. Best thing to do for now is to downgrade to 19. You can watch this page for updates as well. http://docs.seleniumhq.org/download/ Dan On Friday, April 5, 201

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

2013-04-05 Thread watir webdriver
Thanks both for your reply @Dan : Any idea when is the next release ? Where do I get the future release dates ? Any help is much more appreciated. On Thursday, April 4, 2013 5:18:04 PM UTC+1, watir webdriver wrote: > > Hi there, > > Today I've updated my firefox 19.2 to 20.0 and drag and d

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

2013-04-04 Thread Dan
The release notes of 2.31.0 of the selenium webdriver only indicate support for native events up to version 19. The selenium team is pretty good about releasing updates to support new versions, you just might have to wait a couple of days or downgrade to 19 in the meantime. 2.31.0 (2013-03-