cypress的常用事件

cypress的常用事件


cy.get('select').select('Option 1');
cy.get('input').type('Hello, World!');
cy.get('input').clear();
// 输入值后按 Enter 键
cy.get('input').type('Hello, World!{enter}');
cy.get('input[type="checkbox"]').check();
cy.get('input[type="checkbox"]').uncheck();
// 单选按钮
cy.get('input[type="radio"]').check('radioValue');
// 触发自定义事件
cy.get('input').trigger('mouseover');
//  .contains() 方法查找包含特定文本的元素
cy.contains('Submit').click();



Source link
lol

By stp2y

Leave a Reply

Your email address will not be published. Required fields are marked *

No widgets found. Go to Widget page and add the widget in Offcanvas Sidebar Widget Area.