Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cypress-capybara

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cypress-capybara

Capybara finders re-implemented as custom Cypress commands

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
59
decreased by-65.5%
Maintainers
1
Weekly downloads
 
Created
Source

cypress-capybara

CircleCI

An abbreviated port of Capybara's finder methods, reimplemented as custom Cypress commands.

Installation

npm install -D cypress-capybara

Then, in your cypress/support/commands.js file, add:

import 'cypress-capybara/add-commands'

Usage

Here are the commands cypress-capybara implements. As with Capybara proper, they specify pretty liberal search functions, allowing locators to specify interactive elements by label, display text, name, id, value, title, and so on (depending on the element type).

  • cy.findLink(locator, options) (see: find_link)
  • cy.findField(locator, options) (see: find_field)
  • cy.findButton(locator, options) (see: find_button)

To see these in action, check out the library's test file.

Why haven't you implemented x method from Capybara::DSL?

The library will only port functions which can be reasonably deemed as worthwhile apart from the features provided by Cypress's built-in API–which is pretty robust, out of the box! Not only do many commands roughly mirror those in Capybara (e.g. cy.get() is essentially the same as find() or all(), whereas visit is even named the same thing in both libraries), but the chaining style used for Cypress enables a lot of the sort of operations that required separate methods, options, and blocks in Capybara.

Want to fill in a field? Just do findField('Some Label').type('some text'). If this library were to implement fillIn('Some Label', {with: 'some text'}), it would simply be redundant and, more importantly, it would prevent users from using the chaining API to do something like an intermediary filter() operation between finding matching fields and then invoking type().

Keywords

FAQs

Package last updated on 06 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc