Interview Questions

Selenium WebDriver - How to press Shift+Tab ?

Selenium WebDriver Interview question and Answers


(Continued from previous question...)

Selenium WebDriver - How to press Shift+Tab ?

String press = Keys.chord(Keys.SHIFT,Keys.ENTER); webelement.sendKeys(press);
String press = Keys.chord(Keys.SHIFT,Keys.ENTER);
webelement.sendKeys(press);

(Continued on next question...)

Other Interview Questions