Cypress 简明教程
Cypress - Text Verification
text 方法可用于获取 web 元素的文本。还可以添加断言来验证文本内容。
Implementation with text()
以下是有关文本验证的 text() 实施命令:
// 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){
//method text to obtain text content
const t = e.text()
expect(t).to.contains('Sign')
})
})
})
Execution Results
输出如下 −
输出日志显示使用 text 方法获得的 SignIn 文本。
Implementation with text assertions
我们还可以借助以下命令在 web 元素文本上实现断言:
// 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")
// verify text with have.text
cy.get('h1#headingText').find('span').should('have.text','Sign in')
})
})
Execution Results
输出如下:
输出日志显示使用 should 断言完成的文本验证。