Untitled
unknown
plain_text
2 years ago
735 B
12
Indexable
const url = ('https://www.jdsports.co.th/myaccount/register/')
describe('template spec', () => {
it('Signup01', () => {
cy.visit(url)
cy.get('.closeLightbox').click({multiple:true})
cy.get('#firstName').type('paphanan')
cy.get('#lastName').type('najanhom')
cy.get('#username').type('chizanew2@gmail.com')
cy.get('#phone').type('0658435726')
cy.get('#password').type('123456789za')
cy.get('#confirmPassword').type('123456789za')
cy.get('#country').select('Thailand')
cy.get('#postcode').type('12345')
cy.get('#address1').type('12345')
cy.get('#address2').type('12345')
cy.get('#town').type('12345')
cy.get('input[name="billingCounty"]').type('12345')
})
})
Editor is loading...