gpt4 book ai didi

java - 从java触发chrome中的事件

转载 作者:行者123 更新时间:2023-11-30 03:19:03 36 4
gpt4 key购买 nike

是否可以在 Java 应用程序中与 Chrome 进行交互?例如,填写输入字段并提交/触发按钮事件?

最佳答案

是的。请参阅 WebDriver 的 ChromeDriver .

示例用法取自docs :

// Optional, if not specified, WebDriver will search your path for chromedriver.
System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");

WebDriver driver = new ChromeDriver();
driver.get("http://www.google.com/xhtml");
Thread.sleep(5000); // Let the user actually see something!
WebElement searchBox = driver.findElement(By.name("q"));
searchBox.sendKeys("ChromeDriver");
searchBox.submit();
Thread.sleep(5000); // Let the user actually see something!
driver.quit();

关于java - 从java触发chrome中的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31793365/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com