Uploaded by Nrsandhya Ganta

selenium codes1

advertisement
Drag and drop Actions action = new Actions(driver);
action.dragAndDrop(sourceElement, destinationElement).build.perform();
rightclick of mouse is called contextlick()
Actions action = new Actions(driver);
action.contextClick(element).build.perform();
Select class for dropdown
Select dropdown = new Select(Element);
Select dropdown = new Select(Element);
Download