From e1d649edd5934292846d5db624f71dc343490e3d Mon Sep 17 00:00:00 2001 From: helenanull Date: Sun, 21 Mar 2021 21:55:02 +0200 Subject: [PATCH] small update --- cypress/integration/article.spec.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index 1c0a45d..1435ce3 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -2,6 +2,8 @@ import editor from '../selectors/editor.sel' import article from '../selectors/article.sel' describe('Article', () => { + const articleLink = 'https://github.com/helenanull/cypress-example' + beforeEach(() => { cy.register().then((email) => { cy.login(email) @@ -12,7 +14,7 @@ describe('Article', () => { cy.visit('/editor/') cy.get(editor.titleField).type('My post title') cy.get(editor.aboutField).type('Cypress') - cy.get(editor.bodyField).type('Cypress is so cool awyeah') + cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${articleLink}`) cy.get(editor.tagsField).type('cypress, automation') cy.get(editor.publishButton).click() cy.get(article.title).should('be.visible') @@ -29,7 +31,7 @@ describe('Article', () => { // to check field value, use have.value not have.text .and('have.value', 'My Cypress article') cy.get(editor.aboutField).should('be.visible') - .and('have.value', 'https://github.com/helenanull/cypress-example') + .and('have.value', articleLink) cy.get(editor.bodyField) .should('have.value', 'This article is created by createArticle Cypress command') .clear()