- import org.openqa.selenium.By;
2 ^. x6 W9 @) R4 g
- import org.openqa.selenium.WebDriver;
- import org.openqa.selenium.WebElement;
4 \6 Z5 d( S8 x& W5 g7 ~3 l
- import org.openqa.selenium.chrome.ChromeDriver;
, o/ y/ W0 w- D& z4 e- r/ p* U
- import org.openqa.selenium.chrome.ChromeOptions;
% [. d' T& c7 j1 N5 K2 K3 K
-
. B% l& ?% x+ k2 W Z: j
- public class Main {
# c- K0 u" k& z/ R0 k2 N% g% R- ^
- public static void main(String[] args) {
- ChromeOptions options=new ChromeOptions();
- options.addArguments("--remote-allow-origins=*");
+ a& E3 J* q6 P! G0 B+ v6 m
- WebDriver webDriver=new ChromeDriver(options);
# ^9 V% C, J; u: G, ]9 \
- webDriver.get("https://www.baidu.com/");
- //定位元素
- //找到百度搜索框
- WebElement element = webDriver.findElement(By.cssSelector(".s_ipt"));
1 D: @3 O: \/ r/ r
- //输入软件测试
- element.sendKeys("软件测试");
-
1 Q1 u/ u, [) @' d
- }
$ Q$ o4 Y' J5 w
- }
复制代码
1 ?& |( L" a0 w3 e
1 b. C% }) G* w4 \- p
我知道答案
回答被采纳将会获得 5 金钱 已有0人回答
|