|
|
|
@ -55,13 +55,13 @@ describe('Article', () => {
|
|
|
|
|
})
|
|
|
|
|
cy.get(editor.titleField).should('be.visible')
|
|
|
|
|
// to check field value, use have.value not have.text
|
|
|
|
|
.and('have.value', 'My Cypress article')
|
|
|
|
|
.and('have.value', 'Article created by Cypress test')
|
|
|
|
|
cy.get(editor.aboutField).should('be.visible')
|
|
|
|
|
.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.url().should('contain', '/article/article-created-by-cypress-test-')
|
|
|
|
|
cy.get(article.title).should('be.visible')
|
|
|
|
|
cy.get(article.body).should('be.visible')
|
|
|
|
|
.and('have.text', `Test can edit an article. ${readMoreLink}`)
|
|
|
|
|