cypress-bobril
v4.4.0
Published
Cypress commands for searching bobril components.
Downloads
6
Readme
cypress-bobril
Cypress commands for searching bobril components.
Adding to project
Add following lines to your commands.ts:
/// <reference types="cypress-bobril" />
import "cypress-bobril/commands";
and change tsconfig.json:
{
"compilerOptions": {
...
"types": ["cypress-bobril"],
...
},
...
}
How to use
cypress-bobril is command plugin, so it adds following commands interacting with BBSeeker (tool for exploring virtual-dom and its data):
cy.injectBBSeeker
- Injects BBSeeker to testing window - injection is mandatory to run all the other commands.cy.visitWithBBSeeker
- Visits address usingcy.visit
and injects BBSeeker to window usingcy.injectBBSeeker
.cy.findElements
- Performs recursive search of a page virtual DOM starting from bobril root objects. All matching objects are returned as instances of HTMLElementcy.getData
- Returns selected bobril data node value.cy.getProperty
- Returns selected bobril property value.
How to develope
Prerequisites: installed bbcore.
To develope and debug commands just run testing bobril page within sampleApp by command:
bb
Then in the root directory install dependencies and run Cypress:
yarn
npx cypress open