0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/cypress/support/index.js
2020-10-14 10:01:17 +03:00

63 lines
1.8 KiB
JavaScript

import './commands'
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('cypress-terminal-report/src/installLogsCollector')()
beforeEach(() => {
cy.visit('/')
cy.url().then((url) => {
if (url.includes('preflight')) {
cy.get('.text-center > .ant-btn-default').click()
cy.get('[data-attr=preflight-complete]').click()
signUp()
} else if (url.includes('signup')) {
signUp()
} else if (url.includes('login')) {
logIn()
}
cy.wait(200)
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()
}
})
})
})
const signUp = () => {
cy.get('#signupCompanyName').type('Hedgehogs, Inc.').should('have.value', 'Hedgehogs, Inc.')
cy.get('#signupFirstName').type('name').should('have.value', 'name')
cy.get('#signupEmail').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
cy.get('#signupPassword').type('Test1234').should('have.value', 'Test1234')
cy.get('button[data-attr="signup"]').click()
cy.wait(3000)
cy.visit('/demo')
cy.wait(1000)
cy.visit('/')
}
const logIn = () => {
cy.get('#inputEmail').type('fake@posthog.com').should('have.value', 'fake@posthog.com')
cy.get('#inputPassword').type('Test1234').should('have.value', 'Test1234')
cy.get('.btn').click()
}
Cypress.on('uncaught:exception', () => {
return false
})