首页 > web前端 > html教程 > 如何在Selenium测试中设置HTML元素的样式显示?

如何在Selenium测试中设置HTML元素的样式显示?

WBOY
发布: 2023-09-08 10:01:04
转载
1314 人浏览过

如何在Selenium测试中设置HTML元素的样式显示?

我们可以使用 Selenium webdriver 设置 html 元素的样式显示。 DOM 在 Javascript 的帮助下与页面上的元素进行交互。 Selenium 通过 executeScript 方法执行 Javascript 命令。要执行的命令作为参数传递给该方法。

一些操作(例如设置样式显示)由 Javascript Executor 执行。 getElementById 方法可用于定位元素。然后我们必须在 webelement 上应用 style.display 方法并设置显示类型。

语法

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;
      // set the display with style.display method
      j.executeScript ("document.getElementById('gsc-i-id1').style.display='block';");
      driver.close()
   }
}
登录后复制

以上是如何在Selenium测试中设置HTML元素的样式显示?的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板