我正在尝试确保在单击某个范围时页面滚动到某个元素。所以我需要检查元素的y
位置。有人可以解释我如何获得元素的位置吗?
element.all(by.css('[scroll-to="section-executive-summary-anchor"]'))
.then(function (elem) {
elem[0].click().then(function () {
element(by.id('section-executive-summary-anchor'))
.then(function (el) {
// I need "el.position" or something along those lines
});
});
});
答案 0 :(得分:6)
您可以使用getLocation()
function:
element(by.id('section-executive-summary-anchor')).getLocation().then(function (location) {
expect(location.y).toEqual(100);
});