我试图让e2e测试工作下一个例子:
HTML:
<div ng-if="selectedItem"> <span class-"xxx">This is line 1</span> <span class="xxx yyy">This is line 2</span> </div>
量角器:
.. element.findByCss('div[ng-if="selectedItem"] span[class!="yyy"]'); ..
给出以下错误:
Failed: invalid element state: Failed to execute ‘querySelectorAll’
on ‘Document’: ‘div[ng-if=”selectedItem”] span[class!=”yyy”]’ is not a
valid selector.
选择器与jQuery一起使用..我知道它不一样.但我似乎无法找到如何用量角器排除一个类
使用not negation伪类:
原文链接:/angularjs/141831.html$('div[ng-if=selectedItem] span:not(.yyy)');
或者,在您的情况下,您还可以匹配完整的类属性值:
$('div[ng-if=selectedItem] span[class=xxx]');
或者,如果这适用,您还可以通过索引获得第一个跨度:
$$('div[ng-if=selectedItem] span.xxx').first();
$here是元素的快捷方式(by.css()),$$ – to element.all(by.css())