Cypress 简明教程
Cypress - Assertions
Cypress 拥有多种断言类型,这些类型来自不同的库,例如 Mocha、Chai 等等。断言类型分为显式和隐式。
Implicit Assertions
如果一个断言适用于链中从父命令获取的对象,则称为隐式断言。流行的隐式断言包括 .and/.should。
这些命令不能作为独立命令使用。通常,当我们必须对特定对象执行多个检查时,我们使用它们。
让我们通过下面的示例来说明隐式断言 −
// test suite
describe('Tutorialspoint', function () {
it('Scenario 1', function (){
// test step to launch a URL
cy.visit("https://www.tutorialspoint.com/videotutorials/index.php")
// assertion to validate count of sub-elements and class attribute value
cy.get('.toc chapters').find('li').should('have.length',5)
.and('have.class', 'dropdown')
});
});
Execution Results
输出如下 −
输出日志显示了使用 should 和命令获得的两个断言。
Explicit Assertions
如果一个断言适用于对象本身,则称为显式断言。流行的显式断言包括 assert/expect。
用于显式断言的命令如下 −
// test suite
describe('Tutorialspoint', function () {
// it function to identify test
it('Scenario 1', function (){
// test step to launch a URL
cy.visit("https://accounts.google.com")
// identify element
cy.get('h1#headingText').find('span').then(function(e){
const t = e.text()
// assertion expect
expect(t).to.contains('Sign')
})
})
})
Execution Results
输出如下 −
输出日志显示了使用 expect 命令直接应用于对象的断言。
Cypress 拥有默认断言,这些断言在内部处理,不需要专门调用。
以下是一些示例 −
-
cy.visit () − 期望页面以 200 状态码显示内容。
-
cy.request () − 期望远程服务器可用并发送响应。
-
cy.contains() - 预计 Web 元素及其属性在 DOM 中可用。
-
cy.get() - 预计 Web 元素在 DOM 中可用。
-
.find () − Expects the web element to be available in DOM.
-
.type () − Expects the web element to turn to a type able state.
-
.click () − Expects the web element to turn to a clickable state.
-
.its () − Expects for a web element property on the existing subject.