admin管理员组文章数量:1339463
Recently, I've noticed a new locator being added to the Protractor documentation - the by.js()
:
Locates an elements by evaluating a JavaScript expression, which may be either a function or a string.
I understand what this locator provides, but I am missing the real-world use cases when this locator can be useful. When should I prefer to use by.js
instead of other built-in locators like by.css
?
Recently, I've noticed a new locator being added to the Protractor documentation - the by.js()
:
Locates an elements by evaluating a JavaScript expression, which may be either a function or a string.
I understand what this locator provides, but I am missing the real-world use cases when this locator can be useful. When should I prefer to use by.js
instead of other built-in locators like by.css
?
2 Answers
Reset to default 13 +50I feel the use case is to get elements using core javascript functions, whenever css
and other element locators won't help or are don't have properties that we could use. Scenarios -
- If you are getting an element using core javascript functions passing it to
browser.executeScript
thenby.js
can be used to replace it.
Example: -
Suppose if you had to get an element that appears on top between the two, you could get it this way -
var ele = element(by.js(function(){
var ele1 = document.getElementById('#ele1');
var ele2 = document.getElementById('#ele2');
var val = ele1.pareDocumentPosition(ele2);
if(val === 4) return ele1;
else return ele2;
}));
- If you want to get element using its css values like color, font, etc... Though
filter
can be used in this case, butby.js
also supports it. - If the elements are not accessible by css or xpath or any other locators, for example pseudo-elements that have animations or transitions.
Example: -
Suppose if there's element which has :before
and :after
transitions -
.element:before {
color: rgb(255, 0, 0);
}
To verify the color of the element, we could use by.js
passing in a javascript statement to get the element -
var ele = element(by.js(function(){
return window.getComputedStyle(document.querySelector('.element'), ':before');
}));
expect(ele.getCssValue('color')).toEqual('rgb(255, 0, 0)');
Hope it helps.
I think the cases for this are pretty slim, but I can see this being of use when there's data on the client that is not available (or unreliably so) through selenium.
The example on the docs page includes a reference to offsetWidth
:
spans[i].offsetWidth > 100
Used in context:
var wideElement = element(by.js(function() {
var spans = document.querySelectorAll('span');
for (var i = 0; i < spans.length; ++i) {
if (spans[i].offsetWidth > 100) {
return spans[i];
}
}
}));
expect(wideElement.getText()).toEqual('Three');
Alternatively, there may be a use case if there's a third party API on the window or some other service that can help locate an element.
本文标签: javascriptWhat is byjs locator for in ProtractorWebDriverJSStack Overflow
版权声明:本文标题:javascript - What is by.js locator for in ProtractorWebDriverJS? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743587419a2506646.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论