你如何在 Selenium 中在编辑框中输入文本?


我们可以通过以下方法在 Selenium 中的编辑框中输入文本 −

  • 调用 sendkeys() 方法。

  • 使用类 JavascriptExecutor。

使用 sendkeys() 方法的代码实现。

示例

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
public class TextEnter {
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",       "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      String url = "https://tutorialspoint.com/index.htm";
      driver.get(url);
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);
      driver.findElement(By.className("gsc-input"))
      .sendKeys("Selenium");
      driver.close();
   }
}

使用类 JavascriptExecutor 方法的代码实现。

示例

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.JavascriptExecutor;
public class EnterScripting {
   public static void main(String[] args) {
      System.setProperty("webdriver.chrome.driver",       "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe");
      WebDriver driver = new ChromeDriver();
      String url = "https://tutorialspoint.com/index.htm"
      driver.get(url);
      driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS);
      // Create Javascript object
      JavascriptExecutor js = (JavascriptExecutor)driver;
      // Issue command to enter the text
      js.executeScript("document.getElementById('gsc-i-id1').value = 'Selenium';");
      driver.close();
   }
}

更新于: 10-Jun-2020

1K+ 查看

开启 职业 生涯

完成课程即可获得认证

开始
广告