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.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743587419a4475172.html
评论列表(0条)