在运行cypress脚本时,ci圈出现错误“等待浏览器连接超时。正在重试...”。因此,每个脚本都需要访问一个网页。显然前两个脚本正在连接到chrome浏览器,但是从第三个脚本开始我就收到了错误
describe('Visual regression for elements in homepage', () => {
beforeEach(() => {
cy.viewport("macbook-15")
})
it('Take the screenshots of the entire Homepage of Thequint beta env', () => {
cy.visit('/elections')
cy.get('sa[href="/"][data-reactid="7"]').click()
cy.get("#container").matchImageSnapshot('Homepage',{coverage: "fullpage"})
})
it('Take the screenshots of the entire Homepage of Thequint beta env', () => {
cy.visit(Cypress.env("thequintbeta"))
cy.get("#container").matchImageSnapshot('Homepage',{coverage: "fullpage2"})
})
})
因此,赛普拉斯应该可以无头连接到浏览器,但不能连接。 error screenshot