赛普拉斯在运行自定义Chai断言时陷入循环

时间:2019-08-19 13:41:46

标签: chai cypress

我一直在尝试创建自己的自定义chai断言(基于赛普拉斯的食谱模板:https://github.com/cypress-io/cypress-example-recipes/blob/master/examples/extending-cypress__chai-assertions/cypress/support/index.js)。

我在下面的代码中发现,当它运行时,我会遇到一个WRAP的恒定循环,如果我将this.objelement交换,则会导致GET的恒定流。我似乎从未比getRect(first).then((actual)

进步

如果有人可以帮助我,我将非常感激。

cypress / integration / test.js

describe('testing custom chai', () => {
  it('uses a custom chai helper', () => {
    cy.visit('https://www.bbc.co.uk/news');
    cy.get('#orb-modules > header').should('be.leftAligned', '#orb-header');
  });
});

cypress / support / index.js

function getRect(selector) {
  if (selector === '&document') {
    return cy.document().then(doc => doc.documentElement.getBoundingClientRect());
  } if (typeof selector === 'string') {
    return cy.get(selector).then($elem => $elem[0].getBoundingClientRect());
  }
  return cy.wrap(selector).then(elem => Cypress.$(elem)[0].getBoundingClientRect());
}

function getRects(first, second) {
  return getRect(first).then((actual) => {
    getRect(second).then(expected => [actual, expected]);
  });
}

const aligned = (_chai, utils) => {
  function leftAligned(element) {
    getRects(element,this.obj).then((rects) => {
      this.assert(
        rects[0].left === rects[1].left,
        'expected #{this} to be equal',
        'expected #{this} to not be equal',
        this._obj,
      );
    });
  }
  _chai.Assertion.addMethod('leftAligned', leftAligned);
};

chai.use(aligned);

1 个答案:

答案 0 :(得分:4)

基本问题是异步命令cy.get()cy.wrap()cy.document()不能用于自定义断言中。我最好的猜测是,自动重试机制会变本加厉,并给您不断的循环。

相反,您可以使用Cypress.$(),它是同步版本(基本上是在Cypress对象上公开的jquery)。

以下似乎正常。 (我将getRects()参数重命名为 主题 ,因为有时它是选择器,有时是传递到.should()的对象。)

请注意this._obj,而不是this.obj

function getRect(subject) {
  if (subject === '&document') {
    return Cypress.$(document).context.documentElement.getBoundingClientRect();
  }
  if (typeof subject === 'string') {  // the selector passed in to assertion
    return Cypress.$(subject)[0].getBoundingClientRect();
  }
  if (typeof subject === 'object') {  // the element from cy.get() i.e this._obj 
    return subject[0].getBoundingClientRect();
  }
  return null;  // something unkown
}

function getRects(first, second) {
  const actual = getRect(first) 
  const expected = getRect(second)
  return [actual, expected];
}

const aligned = (_chai, utils) => {
  function leftAligned(element) {
    const rects = getRects(element, this._obj)
    this.assert(
      rects[0].left === rects[1].left,
      'expected #{this} to be equal',
      'expected #{this} to not be equal',
      this._obj,
    );
  }
  _chai.Assertion.addMethod('leftAligned', leftAligned);
};
chai.use(aligned);

由于存在跨域问题,我无法直接测试您的BBC页面

  

拒绝在框架中显示“ https://www.bbc.com/news”,因为它将“ X-Frame-Options”设置为“ sameorigin”

但它确实适用于模型页面

cypress / app / bbc-sim.html

<div id="orb-modules">
  <header>
    <h1>Brexit: Boris Johnson's second attempt to trigger election fails</h1>
  </header>
</div>

并像这样进行测试

it('uses a custom chai helper', () => {
  cy.visit('app/bbc-sim.html')
  cy.get('#orb-modules > header').should('be.leftAligned', '#orb-modules');
});