admin管理员组文章数量:1350033
I am trying to make sure the page scrolls to an element when a certain span is clicked. So I need to check the element's y
position. Can someone explain how I can get an element's position?
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
});
});
});
I am trying to make sure the page scrolls to an element when a certain span is clicked. So I need to check the element's y
position. Can someone explain how I can get an element's position?
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
});
});
});
Share
Improve this question
edited Mar 6, 2015 at 4:56
P.T.
25.2k7 gold badges70 silver badges98 bronze badges
asked Mar 6, 2015 at 0:21
SubtubesSubtubes
16.9k24 gold badges75 silver badges108 bronze badges
1 Answer
Reset to default 8You can use getLocation()
function:
element(by.id('section-executive-summary-anchor')).getLocation().then(function (location) {
expect(location.y).toEqual(100);
});
本文标签: javascriptGet element39s offset position with protractorStack Overflow
版权声明:本文标题:javascript - Get element's offset position with protractor - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743871599a2553570.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论