Press TAB and then ENTER key in Selenium WebDriver
GenericKeywords.typein(class.variable, PageLength); pagelength is nothing but string.
After this code, I h
Using Java:
WebElement webElement = driver.findElement(By.xpath(""));//You can use xpath, ID or name whatever you like webElement.sendKeys(Keys.TAB); webElement.sendKeys(Keys.ENTER);