回答

收藏

技术问答测试

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

  1. import org.openqa.selenium.By; 2 ^. x6 W9 @) R4 g
  2. import org.openqa.selenium.WebDriver;
  3. import org.openqa.selenium.WebElement; 4 \6 Z5 d( S8 x& W5 g7 ~3 l
  4. import org.openqa.selenium.chrome.ChromeDriver; , o/ y/ W0 w- D& z4 e- r/ p* U
  5. import org.openqa.selenium.chrome.ChromeOptions; % [. d' T& c7 j1 N5 K2 K3 K
  6. . B% l& ?% x+ k2 W  Z: j
  7. public class Main { # c- K0 u" k& z/ R0 k2 N% g% R- ^
  8.     public static void main(String[] args) {
  9.         ChromeOptions options=new ChromeOptions();
  10.         options.addArguments("--remote-allow-origins=*"); + a& E3 J* q6 P! G0 B+ v6 m
  11.         WebDriver webDriver=new ChromeDriver(options); # ^9 V% C, J; u: G, ]9 \
  12.         webDriver.get("https://www.baidu.com/");
  13.         //定位元素
  14.         //找到百度搜索框
  15.        WebElement element = webDriver.findElement(By.cssSelector(".s_ipt")); 1 D: @3 O: \/ r/ r
  16.        //输入软件测试
  17.         element.sendKeys("软件测试");
  18. 1 Q1 u/ u, [) @' d
  19.     } $ Q$ o4 Y' J5 w
  20. }
复制代码

1 ?& |( L" a0 w3 e
1 b. C% }) G* w4 \- p
我知道答案 回答被采纳将会获得5 金钱 已有0人回答
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则