Releases: JaySunSyn/cypress-daywalker
Releases · JaySunSyn/cypress-daywalker
Retry
We now retry a couple of times if an element was not found. Esp. useful when lazy-importing elements.
// Defaults
const maxRetries = options.maxRetries || 3;
const retryDelayBase = options.retryDelayBase || 500;
cy.dwGet('my-el', {maxRetries: 10, retryDelayBase: 100})
Breaking change
- Prefixed all commands with
dw
- Added
dwAttach
anddwDetach
commands. Use them e.g. before callingshould()
cy.dwGet('div > paper-button span').dwAttach().should('have.text', 'Click').dwDetach();
Query bug fixes
0.1.1 Update package.json
🙈🙈
Dynamic daywalker script injection
0.0.5 Fix visit command
call and setProp
0.0.4 Add call and setProp commands