我們可以使用 ?Selenium
? 中 ?executeScript
? 方法執(zhí)行 ?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;
// 執(zhí)行javascript腳本,設(shè)置元素樣式
j.executeScript ("document.getElementById('gsc-i-id1').style.display='block';");
driver.close()
}
}