mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
9 lines
244 B
JavaScript
9 lines
244 B
JavaScript
import { When } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
When('I add a social media link', () => {
|
|
cy.get('input#addSocialMedia')
|
|
.type('https://freeradical.zone/peter-pan')
|
|
.get('button')
|
|
.contains('Add link')
|
|
.click()
|
|
}) |