The post Webdriver | Drag And Drop Using Testmate | Action appeared first on TestMate.
]]>'Initialize the driver
Call wd.InitializeFireFoxDriver("C:\Users\jaska\Desktop\selenium")
'Navigate to the requireed URL
Call wd.NavigateToUrl("https://jqueryui.com/droppable/")
'Switch to the frame using xpath as identifier
Call wd.SwitchToFrame("xpath::.//*[@id='content']/iframe")
'Initialize Action object
Call wd.InitializeAction()
'Add an action to the initialized action object
Call wd.DragAndDrop_Action("id::draggable","id::droppable")
'Performa the action
Call wd.BuildAndPerform_Action()
'Quit The driver
Call wd.Quit()
The post Webdriver | Drag And Drop Using Testmate | Action appeared first on TestMate.
]]>