我想知道是否可以通过 cypress 中的多个参数进行搜索,例如 ID 和 Class
it('find button',function(){
cy.get('#button_id, .button-class').click()
})
这是可以实现的吗???
我想知道是否可以通过 cypress 中的多个参数进行搜索,例如 ID 和 Class
it('find button',function(){
cy.get('#button_id, .button-class').click()
})
这是可以实现的吗???