UGA Boxxx

つぶやきの延長のつもりで、知ったこと思ったこと書いてます

【Cypress】Commands

Cypressを使ってE2Eテストを行う

その時調べたCommandのメモ

ラジオボタンチェックボックスをチェックする

check | Cypress Documentation

cy.get('[type="checkbox"]').check()
cy.get('[type="radio"]').first().check() 

2要素目をチェック

cy.get('[type="radio"]').eq(1).check() 

入力する

type | Cypress Documentation

cy.get('input').type('Hello, World')

セレクトボックスで選択する

select | Cypress Documentation

cy.get('select').select('user-1')