- ashok.ntActive particpant
- Posts : 11
Join date : 2012-01-13
How to drag a object from one location to another in WebDrive and RC
Sat Jan 14, 2012 9:56 am
Hi,
How to drag a object from one location to another in WebDrive and RC
Regards,
Ashok N T
- qappbcAmateur
- Posts : 38
Join date : 2011-10-13
Re: How to drag a object from one location to another in WebDrive and RC
Sun Jan 15, 2012 5:29 am
WebDriver example:
--------------------------
RenderedWebElement element = (RenderedWebElement); driver.findElement(By.xpath("//div[@id='foo'));
RenderedWebElement target = (RenderedWebElement) driver.findElement(By.xpath("//div[@id='bar'));
element.dragAndDropOn(target);
RC example:
------------
selenium.mouseDownAt("sourceObject");
selenium.mouseMoveAt("Destinationobject");
selenium.mouseUpAt("sourceobject");
--------------------------
RenderedWebElement element = (RenderedWebElement); driver.findElement(By.xpath("//div[@id='foo'));
RenderedWebElement target = (RenderedWebElement) driver.findElement(By.xpath("//div[@id='bar'));
element.dragAndDropOn(target);
RC example:
------------
selenium.mouseDownAt("sourceObject
selenium.mouseMoveAt("Destinationobject
selenium.mouseUpAt("sourceobject
- faramkaProfessional
- Posts : 143
Join date : 2011-09-15
Location : Poland
Re: How to drag a object from one location to another in WebDrive and RC
Mon Jan 16, 2012 2:38 pm
I am using dragAndDropToObject() in Selenium RC and it works fine for me.
Permissions in this forum:
You cannot reply to topics in this forum