验证复选框在 Cypress 中是否被选中
Verify the checkbox is checked in Cypress
我想验证复选框是否已选中。这是复选框
的 HTML
它的 js:
localShopClerkcheckbox(){
return cy.get("[name='isLocalClerk']")
//return cy.get(':nth-child(4) > .dx-box-flex > :nth-child(2) > .dx-item-content > .dx-last-col > .dx-field-item-content > .dx-show-invalid-badge > .dx-checkbox-container > .dx-checkbox-icon')
}
然后步骤定义:
Then("I see the Local Shop clerk is selected",() =>{
backofficeCreateDeleteClerkPage.localShopClerkcheckbox().should('have.attr','aria-checked',true)
})
奇怪的是,Cypress 显示 预期值为真,但实际值为真
您必须将 true
更改为 'true'
。 true 是一个字符串。
backofficeCreateDeleteClerkPage
.localShopClerkcheckbox()
.should('have.attr', 'aria-checked', 'true')
我想验证复选框是否已选中。这是复选框
的 HTML它的 js:
localShopClerkcheckbox(){
return cy.get("[name='isLocalClerk']")
//return cy.get(':nth-child(4) > .dx-box-flex > :nth-child(2) > .dx-item-content > .dx-last-col > .dx-field-item-content > .dx-show-invalid-badge > .dx-checkbox-container > .dx-checkbox-icon')
}
然后步骤定义:
Then("I see the Local Shop clerk is selected",() =>{
backofficeCreateDeleteClerkPage.localShopClerkcheckbox().should('have.attr','aria-checked',true)
})
奇怪的是,Cypress 显示 预期值为真,但实际值为真
您必须将 true
更改为 'true'
。 true 是一个字符串。
backofficeCreateDeleteClerkPage
.localShopClerkcheckbox()
.should('have.attr', 'aria-checked', 'true')