0.1.1 • Published 5 years ago

cypress-woocommerce v0.1.1

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
5 years ago

Cypress WooCommerce

Adds WooCommerce support to Cypress.

Installation

npm install -D cypress-woocommerce

Usage

Example:

import {
	CustomerFlow,
	StoreOwnerFlow
} from 'cypress-woocommerce';

describe( 'Cart page', () => {
	before( () => {
		StoreOwnerFlow.login();
		StoreOwnerFlow.openSettings();
		StoreOwnerFlow.logout();
	} );

	it( 'should display no item in the cart', () => {
		CustomerFlow.goToCart()
		cy.contains( '.cart-empty', 'Your cart is currently empty.' )
	} );
} );