You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
635 B
21 lines
635 B
2 years ago
|
describe('My First Test', () => {
|
||
|
it('finds the content "type"', () => {
|
||
|
cy.visit('http://localhost:8080')
|
||
|
|
||
|
cy.contains('Yes').click()
|
||
|
|
||
|
cy.get('#mnemonic').type('seminar accuse mystery assist delay law thing deal image undo guard initial shallow wrestle list fragile borrow velvet tomorrow awake explain test offer control')
|
||
|
cy.get('#import').click()
|
||
|
|
||
|
cy.get('Share Your ID')
|
||
|
|
||
|
/**
|
||
|
cy.visit('http://localhost:8080/new-edit-project')
|
||
|
cy.get('#name').type('Clicker Shooter')
|
||
|
cy.get('#description').type('Joel\'s new test project via Cypress')
|
||
|
cy.contains('Save Project').click()
|
||
|
**/
|
||
|
|
||
|
})
|
||
|
})
|