Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-08-05 Thread Chuck van der Linden
On Sunday, July 14, 2013 8:29:45 AM UTC-7, watir webdriver wrote: > Thanks for the reply John...I've managed to fix the issue. So for the benefit of anyone else who is trying to do this sort of thing, would you care to share with us HOW you managed to fix the issue, e.g. the code that is worki

Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-14 Thread John Fitisoff
Oh, good! From: watir webdriver To: "watir-general@googlegroups.com" Sent: Sunday, July 14, 2013 8:29 AM Subject: Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver Thanks for the reply John...I've managed to fix

Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-14 Thread watir webdriver
Thanks for the reply John...I've managed to fix the issue. On Wednesday, July 10, 2013, John Fitisoff wrote: > A couple of seconds seems like a long time. Maybe try the action builder > 'release' action instead of firing the event? Maybe some javascript event > isn't occurring at the right time?

Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-11 Thread watir webdriver
Thanks for the reply John...I've managed to fix the issue. On Wednesday, July 10, 2013, John Fitisoff wrote: > A couple of seconds seems like a long time. Maybe try the action builder > 'release' action instead of firing the event? Maybe some javascript event > isn't occurring at the right time?

Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-05 Thread John Fitisoff
ooglegroups.com Sent: Wednesday, July 3, 2013 6:53 AM Subject: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver Hi there, I'm trying to drag and drop an element in webpage through the below code: Step def: When(/^I drag and drop Basket rule to the position slot

Re: [wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-03 Thread Joe Fleck
Hi, I have notice different behavior in the drag n drop method depending on the os and browsers used. I originally developed the drag_n_drop step on a Mac/Firefox combo and will see the object being moved. Though when I run the same script on a WIN7 IE8 VM the visible object doesn't move but the

[wtr-general] [Watir-webdriver] - Drag and drop using watir webdriver

2013-07-03 Thread watir webdriver
Hi there, I'm trying to drag and drop an element in webpage through the below code: Step def: When(/^I drag and drop Basket rule to the position slot$/) do @browser.span(:class => "draggable ui-draggable").drag_and_drop_on(@browser.div(:class => "droparea ui-droppable ui-sortable")) end *The s