How to Write Without using Sendkeys In Java Selenium Program?

How to Write Without using Sendkeys In Java Selenium Program?

package com.selenium.actions;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.internal.WrapsDriver;
public class WriteInTextboxWithoutSendkeys 
{
   public static void setAttribute(WebElement element, String attributeName,
         String value)
   {
      WrapsDriver wd = (WrapsDriver) element;
      JavascriptExecutor driver = (JavascriptExecutor)wd.getWrappedDriver();
      driver.executeScript("arguments[0].setAttribute(arguments[1],arguments[2])",
            element, attributeName, value);
   }
   public static void main(String[] args)
   {
      WebDriver driver=new FirefoxDriver();
      driver.get("https://www.facebook.com/");
      driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
      WebElement input_user=driver.findElement(By.xpath("//*[@id='email']"));
      setAttribute(input_user,"value","SoftwareTestingBlog");
   }
}

I love open-source technologies and am very passionate about software development. I like to share my knowledge with others, especially on technology that's why I have given all the examples as simple as possible to understand for beginners. All the code posted on my blog is developed, compiled, and tested in my development environment. If you find any mistakes or bugs, Please drop an email to softwaretestingo.com@gmail.com, or You can join me on Linkedin.

Leave a Comment