Cypress
記述例 (サンプルに入ってる)
code:actions.js
context('Actions', () => {
beforeEach(() => {
})
it('.type() - type into a DOM element', () => {
cy.get('.action-email')
.type('fake@email.com').should('have.value', 'fake@email.com')
// .type() with special character sequences
.type('{leftarrow}{rightarrow}{uparrow}{downarrow}')
.type('{del}{selectall}{backspace}')
なんかわかりやすそう 増井俊之.icon
hata6502.icon 便利ですね。1年くらい業務で使ってました。
記述が楽ですねー 増井俊之.icon
% npx cypress open
GUIが開く
Chromeで動く
% npx cypress run -s テストファイル
ターミナルで動く (ヘッドレスブラウザ)
EpisoPass.comをテストしてるとこ 増井俊之.icon
https://www.youtube.com/watch?v=CdFH9PQYVRo