Skip to content

Instantly share code, notes, and snippets.

@aleccool213
Created December 16, 2019 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleccool213/8b5af73f64791b6d551787e06bab05d5 to your computer and use it in GitHub Desktop.
Save aleccool213/8b5af73f64791b6d551787e06bab05d5 to your computer and use it in GitHub Desktop.
import { Given } from 'cypress-cucumber-preprocessor/steps';
Given('I am on DuckDuckGos website', () => {
cy.visit('https://duckduckgo.com');
});
When('the search phrase "panda" is entered', () => {
...
});
When('results for "panda" are shown', () => {
...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment