diff --git a/frappe/tests/testcafe/0-test_setup_wizard.js b/frappe/tests/testcafe/0-test_setup_wizard.js deleted file mode 100644 index f1067f3068..0000000000 --- a/frappe/tests/testcafe/0-test_setup_wizard.js +++ /dev/null @@ -1,64 +0,0 @@ -import { Selector } from 'testcafe'; - -fixture `Setup Wizard` - .page `http://localhost:8000/login`; - -test('Setup Wizard Test', async t => { - const wizard_heading = Selector(() => { - return $('p.lead:visible')[0]; - }) - const lang = Selector("select[data-fieldname='language']") - const next_btn = Selector("a.next-btn") - const country = Selector("select[data-fieldname='country']") - const timezone = Selector("select[data-fieldname='timezone']") - const currency = Selector("select[data-fieldname='currency']") - const full_name = Selector("input[data-fieldname='full_name']") - const email = Selector("input[data-fieldname='email']") - const password = Selector("input[data-fieldname='password']") - const upload_input = Selector("input.input-upload-file") - const upload_btn = Selector("button").withText("Upload") - const modal_close_btn = Selector("div.modal.in button.btn-modal-close") - const missing_image_div = Selector("div.missing-image") - const complete_setup = Selector("a.complete-btn").nth(2) - const setup_complete_div = Selector("p").withText("Setup Complete") - - - - await t - .typeText('#login_email', 'Administrator') - .typeText('#login_password', 'admin') - .click('.btn-login') - .navigateTo('/desk#setup-wizard') - - // Step 0 - .expect(wizard_heading.innerText).eql("Welcome") - .click(lang) - .click("option[value='English (United States)']") - .expect(lang.value).eql("English (United States)") - .click(next_btn) - - // Step 1 - .expect(wizard_heading.innerText).eql("Region") - .click(country) - .click("option[value='India']") - .expect(country.value).eql("India") - .expect(timezone.value).eql("Asia/Kolkata") - .expect(currency.value).eql("INR") - .click(next_btn.nth(1)) - - // Step 2 - .expect(wizard_heading.innerText).eql("The First User: You") - .typeText(full_name, "Jane Doe") - .expect(full_name.value).eql("Jane Doe") - .typeText(email, "jane_doe@example.com") - .expect(email.value).eql("jane_doe@example.com") - .typeText(password, "password") - .expect(password.value).eql("password") - .click("button[data-fieldname='attach_user']") - .setFilesToUpload(upload_input, './uploads/user_picture.svg') - .click(upload_btn) - .click(modal_close_btn) - .expect(missing_image_div.visible).notOk() - .click(complete_setup) - .expect(setup_complete_div.visible).ok() -}); diff --git a/frappe/tests/testcafe/test_todo.js b/frappe/tests/testcafe/test_todo.js deleted file mode 100644 index 934655dd25..0000000000 --- a/frappe/tests/testcafe/test_todo.js +++ /dev/null @@ -1,56 +0,0 @@ -import { Selector } from 'testcafe'; - -function today(){ - var today = new Date(); - var dd = today.getDate(); - var mm = today.getMonth()+1; //January is 0! - var yyyy = today.getFullYear(); - var today = dd+'-'+mm+'-'+yyyy; - return today; -} - -fixture `ToDo Tests` - .page `http://localhost:8000/login`; - -test('ToDo - Insert, List and Delete', async t => { - const new_btn = Selector("button.btn-primary").withText("New") - const priority = Selector("select[data-fieldname='priority']") - const desc = Selector("[data-fieldname='description'] div.note-editable") - const save_btn = Selector("button.primary-action").withText("Save") - const mytodo = Selector("a.list-id").withText("TestCafe.") - const menu_btn = Selector("[data-page-route='Form/ToDo'] .menu-btn-group button") - const yes_btn = Selector("button.btn-primary", {visibilityCheck: true}).withText("Yes") - const refresh_btn = Selector("button").withText("Refresh") - const delete_btn = Selector("a").withText("Delete") - - await t - .typeText('#login_email', 'jane_doe@example.com') - .typeText('#login_password', 'password') - .click('.btn-login') - .navigateTo('/desk#List/ToDo') - - // ToDo Insert - .click(new_btn) - .click("a.edit-full") - .typeText("input[data-fieldname='date']", today()) - .click(priority) - .click("option[value='High']") - .expect(priority.value).eql("High") - .typeText(desc, "Finish writing ToDo tests in TestCafe.") - .click(save_btn) - .wait(200) - - // Check List View - .click("a[href='#List/ToDo']") - .expect(mytodo.visible).ok() - - //ToDo Delete - .click(mytodo) - .click(menu_btn) - .click(delete_btn) - .click(yes_btn) - - // Check ListView Again - .click(refresh_btn) - .expect(mytodo.exists).notOk() -}); diff --git a/frappe/tests/testcafe/uploads/user_picture.svg b/frappe/tests/testcafe/uploads/user_picture.svg deleted file mode 100644 index b211c67325..0000000000 --- a/frappe/tests/testcafe/uploads/user_picture.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Abstract user icon - - - - - - - - - - - \ No newline at end of file