0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/cypress/support/index.js
Michał Matłoka 93aebb9e7b
Update prettier to 2.0.x (#1143)
* Update prettier devDependency to 2.0.x

* Format with prettier 2.0.5

* Update yarn.lock
2020-07-03 14:37:07 +02:00

43 lines
1.4 KiB
JavaScript

import './commands'
beforeEach(() => {
cy.visit('/')
cy.url().then((url) => {
if (url.includes('setup_admin')) {
cy.get('#inputCompany').type('company').should('have.value', 'company')
cy.get('#inputName').type('name').should('have.value', 'name')
cy.get('#inputEmail').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
cy.get('#inputPassword').type('password').should('have.value', 'password')
cy.get('.btn').click()
cy.visit('/demo')
cy.visit('/')
} else if (url.includes('login')) {
cy.get('#inputEmail').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
cy.get('#inputPassword').type('password').should('have.value', 'password')
cy.get('.btn').click()
}
cy.wait(2000)
cy.get('body').then(($body) => {
if ($body.find('[data-attr=select-platform-Web]').length) {
cy.get('[data-attr=select-platform-Web]').click()
cy.get('[data-attr=wizard-step-counter]').should('contain', 'Step 2')
cy.get('[data-attr=wizard-continue-button]').click()
cy.get('[data-attr=wizard-complete-button]').should('exist')
cy.get('[data-attr=wizard-complete-button]').click()
}
})
})
})
Cypress.on('uncaught:exception', () => {
return false
})