From bb237f57122df64c79caa039da0a5fc32e2b62e5 Mon Sep 17 00:00:00 2001 From: helenanull Date: Fri, 2 Apr 2021 23:01:09 +0300 Subject: [PATCH] small updates --- cypress/integration/article.spec.js | 16 +++++++--------- cypress/support/article.cmd.js | 9 +++++---- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/cypress/integration/article.spec.js b/cypress/integration/article.spec.js index 01cef1a..f39c5b8 100644 --- a/cypress/integration/article.spec.js +++ b/cypress/integration/article.spec.js @@ -3,7 +3,7 @@ import article from '../selectors/article.sel' import home from '../selectors/home.sel' describe('Article', () => { - const articleLink = 'https://github.com/helenanull/cypress-example' + const readMoreLink = 'https://github.com/helenanull/cypress-example' beforeEach(() => { cy.register().then((email) => { @@ -16,7 +16,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! ${articleLink}`) + cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${readMoreLink}`) cy.get(editor.publishButton).click() cy.get(article.title).should('be.visible') .and('have.text', 'My post title') @@ -26,7 +26,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! ${articleLink}`) + cy.get(editor.bodyField).type(`Cypress is so cool awyeah! ${readMoreLink}`) cy.get(editor.tagsField).type('cypress{enter}') cy.get(editor.tagsField).should('have.value', '') cy.get(editor.addedTags).should('be.visible') @@ -57,16 +57,14 @@ 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', articleLink) - cy.get(editor.bodyField) - .should('have.value', 'This article is created by createArticle Cypress command') - .clear() - .type('This is modified body') + .and('have.value', readMoreLink) + cy.get(editor.bodyField).clear() + .type(`Test can edit an article. ${readMoreLink}`) cy.get(editor.publishButton).click() cy.url().should('contain', '/article/my-cypress-article-') cy.get(article.title).should('be.visible') cy.get(article.body).should('be.visible') - .and('have.text', 'This is modified body') + .and('have.text', `Test can edit an article. ${readMoreLink}`) }) it('can delete an article', () => { diff --git a/cypress/support/article.cmd.js b/cypress/support/article.cmd.js index ccae0be..3122ac0 100644 --- a/cypress/support/article.cmd.js +++ b/cypress/support/article.cmd.js @@ -1,5 +1,6 @@ Cypress.Commands.add('createArticle', () => { const apiUrl = Cypress.env('apiUrl') + const link = 'https://github.com/helenanull/cypress-example' cy.request({ url: `${apiUrl}/articles`, @@ -9,10 +10,10 @@ Cypress.Commands.add('createArticle', () => { }, body: { article: { - title: 'My Cypress article', - description: 'https://github.com/helenanull/cypress-example', - body: 'This article is created by createArticle Cypress command', - tagList: ['cypress', 'test-automation', 'simple'] + title: 'Article created by Cypress test', + description: link, + body: `This article is created by createArticle Cypress command. See more: ${link}`, + tagList: ['cypress', 'simple', 'test-automation'] } } })