How to Enter Value in Textbox Using Selenium Webdriver Java
Selenium is an
open-source
web-based automation tool that is
implemented using a web driver. We will be using geckodriver
because Selenium 3 enables
geckodriver as the default WebDriver implementation for Firefox.
Pre-requisites:
- geckodriver.exe
- maven dependency selenium
<dependency> <groupid>org.seleniumhq.selenium</groupid> <artifactid>selenium-java</artifactid> <version>4.1.1</version> </dependency>
Steps:
It's a 5 steps process:
-
Set
webdriver.gecko.driver
and its'path
as a system property. - Set the firefox diver and browse to the website link.
-
Get the textbox web element;
textarea
usingwebdriver.findElement()
function and css selector. - Click the text area to make it available for interaction.
- Send the value as keys.
Let’s see all the above steps in the code. We will use
webelement.sendKeys(CharSequence....KeystoSend)
function to
enter the value in textbox.
import org.openqa.selenium.By; import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; public class EnterTextBoxValue {
public static String GECKODRIVER_PATH = "F:\\WORK\\SeleniumShortTasks\\TextBoxValue\\src\\main\\resources\\geckodriver.exe"; public static void main(String[] args) { //set firefox webdriver System.setProperty("webdriver.gecko.driver", GECKODRIVER_PATH); WebDriver driver = new FirefoxDriver(); //get the firefox browser & Browse the Website String siteLink = "https://docs.google.com/forms/d/e/1FAIpQLSd3hbwlnuLuwVVnP3iEAjQwXQuZ7PuiTNMuuYe0TcHHYqZ6uQ/viewform"; driver.get(siteLink); //Get the textbox Webelement String text = "To master the shortcuts and tricks available in my current programming software within the next month to streamline the design process and help meet deadlines"; WebElement textarea = driver.findElement(By.cssSelector("textarea.KHxj8b.tL9Q4c")); //Click the element to make it available for interaction textarea.click(); //Send Text as Key sequence textarea.sendKeys(text); } }
Output:
- source code
- geckdriver.exe
Comments
Post a Comment