1.0.1 • Published 4 years ago

cypress-resq v1.0.1

Weekly downloads
29
License
MIT
Repository
github
Last release
4 years ago

Cypress-resq

cypress react element select query

Install

npm i -S cypress-resq

Configure Cypress

before use it, please add plugin and commands to cypress

Plugin

Find your cypress/plugins/index.js file and change it to look like this:

const injectResqPlugin = require('cypress-resq/plugin'); // add this line

module.exports = (on, config) => {
  on('task', injectResqPlugin); // add this line
};

Command

Find your cypress/support/index.js file and add the following line:

import 'cypress-resq/commands';

Usage

Basic usage

Take this React App

// imports

const MyComponent = () => (
    <div>My Component</div>
)

const App = () => (
    <div><MyComponent /></div>
)

ReactDOM.render(<App />, document.getElementById('root'))

Selecting MyComponent and click it by cypress:

// it's important to inject resq command after visit react page.
cy.visit('/').injectResq();
// find element by react component name
cy.resq$('MyComponent').click();

Filtering selection

You can filter your selections by props

<MyComponent e2e="goodcomponent" />

Selecting MyComponent with prop e2e and click it by cypress:

cy.resq$('MyComponent', {e2e: 'goodcomponent'}).click();

Chain selection

you can chain resq$ command after others command return element.

cy.get('#root').resq$('MyComponent').click();
1.0.1

4 years ago

1.0.0

4 years ago