检查Web元素是否具有使用Selenium WebDriver应用的伪选择器(:first-child)的类

时间:2016-03-14 19:09:36

标签: css selenium

我的css样式使用伪选择器first-child

.point:first-child {
    margin-left: 0;
}

有没有办法检查某个特定的DOM元素是否有应用了point伪选择器的类:first-child.getAttribute("class")无法使用,只会返回"point"

1 个答案:

答案 0 :(得分:0)

CSS Pseudo-classes将在元素本身中提供,但仅在css部分提供。 尝试在JQuery选择器

上使用此选择器".point:first"