LoginSignup
2
0

Cypress E2E - Udemy コースの勉強備忘録

Last updated at Posted at 2024-03-12

Udemy コースの勉強備忘録
https://www.udemy.com/share/1088P23@Xc9le6wHj4CIBgy9C92ZIwk2y5y-rXh21_xdKNSBWQilndVe0Y6-EYeElwvcGlhq/

ensure 保証する
common gotcha よくある落とし穴
hence したがって
backdrop 背景
noteworthy 注目すべき
slightly わずかに
inspect 検査する
curly brace 中括弧


/// <referenct types="Cypress" />
auto completion

要素が含まれているか
タイトルが正しいか
https://docs.cypress.io/guides/references/assertions#Common-Assertions

cy.get('.main-header').get('img')

cy.get('.main-header')
cy.get('img')
と一緒

.click({force: true})

Cypress Test Run IN Isolation

data-cy attribute

.as('subtmiBtn')
cy.get('@submitBtn')

.then()
expect()

.type('hogehoge{enter}')

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0