what is the difference between keys.enter and keys.return in selenium? i have used both and both performed enter.
Answer / piya
For Enter-
act.sendKeys(Keys.RETURN);
For Tab-
act.sendKeys(Keys.ENTER);
| Is This Answer Correct ? | 2 Yes | 6 No |
How can we fetch a text written over an element?
How to perform right click action (context click) in selenium webdriver?
What are the different types of waits available in webdriver?
How does click on button without using click method
List some scenarios which we cannot automate using selenium webdriver?
How does one execute java scripts function in selenium?
what are the four parameter you have to pass in selenium?
What happen if you mix both thread.sleep and webdriver waits in a selenium script?
what is the difference between driver.get() and driver.navigate.to(“url”)?
What is the difference between single and double slash in xpath?
Which are the browsers supported by selenium rc?
Mention different exceptions you had in selenium web driver?