mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 02:49:32 +01:00
fb10127633
* add regex requirement for input and prompt * update test with new password restrictions * fix more tests
43 lines
1.4 KiB
JavaScript
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('Test1234').should('have.value', 'Test1234')
|
|
|
|
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('Test1234').should('have.value', 'Test1234')
|
|
|
|
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
|
|
})
|