VAIBHAV SINGH Selenium Interview Question |
Question : How to type in a textbox using Selenium? |
Using SendKeys method (Its emulate typing) User can use sendKeys(String to be entered) to enter the string in the textbox.
Using JavascriptExecutor Interface (Its simulates typing) User can use JavascriptExecutor interface also which basically simulate typing and enter big files and text in any input box
|
Back |