gpt4 book ai didi

javascript - 用 Protractor 获取元素的偏移位置

转载 作者:数据小太阳 更新时间:2023-10-29 05:18:46 24 4
gpt4 key购买 nike

我试图确保在单击某个跨度时页面滚动到某个元素。所以我需要检查元素的 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
});

});

});

最佳答案

您可以使用 getLocation() function :

element(by.id('section-executive-summary-anchor')).getLocation().then(function (location) {
expect(location.y).toEqual(100);
});

关于javascript - 用 Protractor 获取元素的偏移位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28890344/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com