|
|
|
@ -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()
|
|
|
|
|