我们可以使用 Selenium
中 executeScript
方法执行 Javascript
脚本,修改页面上的元素样式。
语法
executor.executeScript("document.getElementById('gsc-i-id1').style.display='block';");
例子
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.JavascriptExecutor;
public class ElementStyleSet{
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\ghs6kor\\Desktop\\Java\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.tutorialspoint.com/index.htm");
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
// Javascript executor class with executeScript method
JavascriptExecutor j = (JavascriptExecutor) driver;
// 执行javascript脚本,设置元素样式
j.executeScript ("document.getElementById('gsc-i-id1').style.display='block';");
driver.close()
}
}