27 lines
894 B
JavaScript
27 lines
894 B
JavaScript
context('Web Form', () => {
|
|
before(() => {
|
|
cy.login();
|
|
});
|
|
|
|
it('Navigate and Submit a WebForm', () => {
|
|
cy.visit('/update-profile');
|
|
cy.get_field('last_name', 'Data').type('_Test User', {force: true}).wait(200);
|
|
cy.get('.web-form-actions .btn-primary').click();
|
|
cy.wait(5000);
|
|
cy.url().should('include', '/me');
|
|
});
|
|
|
|
it('Navigate and Submit a MultiStep WebForm', () => {
|
|
cy.call('frappe.tests.ui_test_helpers.update_webform_to_multistep').then(() => {
|
|
cy.visit('/update-profile-duplicate');
|
|
cy.get_field('last_name', 'Data').type('_Test User', {force: true}).wait(200);
|
|
cy.get('.btn-next').should('be.visible');
|
|
cy.get('.btn-next').click();
|
|
cy.get('.btn-previous').should('be.visible');
|
|
cy.get('.btn-next').should('not.be.visible');
|
|
cy.get('.web-form-actions .btn-primary').click();
|
|
cy.wait(5000);
|
|
cy.url().should('include', '/me');
|
|
});
|
|
});
|
|
});
|