Как выполнить JavaScript в Selenium WebDriver
Ниже приведен фрагмент кода, показывающий, как выполнить JavaScript в Selenium WebDriver.
WebDriver driver = new ChromeDriver();
if (driver instanceof JavascriptExecutor) {
((JavascriptExecutor) driver).executeScript("alert('hello world');");
}
1. Пример WebDriver
В этом примере он используетWebDriver для загрузки «google.com», а позже выполняет простойalert ().
JavaScriptExample.java
package com.example.test;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.remote.DesiredCapabilities;
public class JavaScriptExample {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver",
"/Users/example/Downloads/chromedriver");
ChromeOptions options = new ChromeOptions();
options.addArguments("window-size=1024,768");
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
WebDriver driver = new ChromeDriver(capabilities);
driver.get("http://google.com/");
if (driver instanceof JavascriptExecutor) {
((JavascriptExecutor) driver)
.executeScript("alert('hello world');");
}
}
}
Выход
