使用量角器获取元素的偏移位置

时间:2015-03-06 00:21:26

标签: javascript protractor angularjs-e2e

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

    });

  });

1 个答案:

答案 0 :(得分:6)

您可以使用getLocation() function

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