cypress-resq

1.0.1 • Public • Published

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();

Readme

Keywords

none

Package Sidebar

Install

npm i cypress-resq

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

4.86 kB

Total Files

6

Last publish

Collaborators

  • chnbohwr