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}')