frappe / cypress-testsuite

cypress testsuite for frappe
MIT License
2 stars 14 forks source link

Lead: Creating a new Lead manually #1

Open umairsy opened 5 years ago

umairsy commented 5 years ago

To test:

crescent28 commented 4 years ago

//Test case written

context('Table MultiSelect', () => { beforeEach(() => { cy.login(); });

it('Generate a New Lead', () => { cy.new_form("Lead"); cy.fill_field("lead_name", "Michelle", "Data"); cy.fill_field("customer_group", "Commercial", "Link"); cy.fill_field("company_name", "Mednet", "Data"); cy.fill_field("contact_date", "11-12-2019 14:02:14", "Datetime"); cy.fill_field("contact_by", "michelle@iwebnotes.com", "Link"); cy.save(); cy.submit(); }); });