回答

收藏

技术问答测试

技术问答 技术问答 378 人阅读 | 0 人回复 | 2023-08-08

  1. import org.openqa.selenium.By;
  2. import org.openqa.selenium.WebDriver; " f' e& s  ^. h  \
  3. import org.openqa.selenium.WebElement; , A  s0 G3 B. W6 P; U
  4. import org.openqa.selenium.chrome.ChromeDriver; ( D1 P$ x- Y' H6 u8 V
  5. import org.openqa.selenium.chrome.ChromeOptions;
  6. public class Main { # d1 d( E& E$ \) d+ I
  7.     public static void main(String[] args) { ! s" x- x" W5 e# j7 f; y1 v
  8.         ChromeOptions options=new ChromeOptions();
  9.         options.addArguments("--remote-allow-origins=*");
  10.         WebDriver webDriver=new ChromeDriver(options);
  11.         webDriver.get("https://www.baidu.com/");   b) q$ T" O, q# A& O
  12.         //定位元素 6 L+ U8 N1 J- d! x; e+ Q
  13.         //找到百度搜索框
  14.        WebElement element = webDriver.findElement(By.cssSelector(".s_ipt")); ; z* Y: f. c$ }0 x0 c
  15.        //输入软件测试 * w3 s6 F& J% y: N/ @
  16.         element.sendKeys("软件测试"); 5 L8 K9 W3 @% Y" _* E4 p! P
  17. ' H0 z4 I0 Q7 m- g" ?' y
  18.     }
  19. }
复制代码
1 c4 F' z: T2 }& |6 x

; y" a- Z# s+ m, N; ~8 w9 u
我知道答案 回答被采纳将会获得5 金钱 已有0人回答
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则