diff --git a/cypress/e2e/elements/apresentacao.cy.ts b/cypress/e2e/elements/apresentacao.cy.ts index 7eaec56..a12ea38 100644 --- a/cypress/e2e/elements/apresentacao.cy.ts +++ b/cypress/e2e/elements/apresentacao.cy.ts @@ -1,4 +1,4 @@ -import HomePage from '../../pagesObjects/home/HomePage'; +import HomePage from '../../pageObjects/home/HomePage'; import ElementsLink from '../../support/Enum/links/Elements'; const Home = new HomePage(); diff --git a/cypress/e2e/elements/checkBox.cy.ts b/cypress/e2e/elements/checkBox.cy.ts index 375ee65..1bee4bf 100644 --- a/cypress/e2e/elements/checkBox.cy.ts +++ b/cypress/e2e/elements/checkBox.cy.ts @@ -1,6 +1,6 @@ -import HomePage from '../../pagesObjects/home/HomePage'; +import HomePage from '../../pageObjects/home/HomePage'; import ElementsLink from '../../support/Enum/links/Elements'; -import CheckBoxPage from '../../pagesObjects/checkBox/CheckBoxPage'; +import CheckBoxPage from '../../pageObjects/checkBox/CheckBoxPage'; import CheckBoxText from '../../support/Enum/CheckBoxText'; const Home = new HomePage(); diff --git a/cypress/e2e/elements/radioButton.cy.ts b/cypress/e2e/elements/radioButton.cy.ts index 4224b4e..a3e8324 100644 --- a/cypress/e2e/elements/radioButton.cy.ts +++ b/cypress/e2e/elements/radioButton.cy.ts @@ -1,6 +1,6 @@ -import HomePage from '../../pagesObjects/home/HomePage'; +import HomePage from '../../pageObjects/home/HomePage'; import ElementsLink from '../../support/Enum/links/Elements'; -import RadioButtonPage from '../../pagesObjects/radioButton/RadioBtnPage'; +import RadioButtonPage from '../../pageObjects/radioButton/RadioBtnPage'; const Home = new HomePage(); const RadioButton = new RadioButtonPage(); diff --git a/cypress/e2e/elements/textBox.cy.ts b/cypress/e2e/elements/textBox.cy.ts index 9d8cb0c..47937d2 100644 --- a/cypress/e2e/elements/textBox.cy.ts +++ b/cypress/e2e/elements/textBox.cy.ts @@ -1,5 +1,5 @@ -import HomePage from '../../pagesObjects/home/HomePage'; -import TextBoxPage from '../../pagesObjects/textBox/TextBoxPage'; +import HomePage from '../../pageObjects/home/HomePage'; +import TextBoxPage from '../../pageObjects/textBox/TextBoxPage'; import ElementsLink from '../../support/Enum/links/Elements'; const Home = new HomePage(); diff --git a/cypress/e2e/home.cy.ts b/cypress/e2e/home.cy.ts index 8fb8131..de42ee8 100644 --- a/cypress/e2e/home.cy.ts +++ b/cypress/e2e/home.cy.ts @@ -1,4 +1,4 @@ -import HomePage from '../pagesObjects/home/HomePage'; +import HomePage from '../pageObjects/home/HomePage'; import HomeLinks from '../support/Enum/links/Home'; const Home = new HomePage(); diff --git a/cypress/pagesObjects/checkBox/CheckBoxLocators.ts b/cypress/pageObjects/checkBox/CheckBoxLocators.ts similarity index 100% rename from cypress/pagesObjects/checkBox/CheckBoxLocators.ts rename to cypress/pageObjects/checkBox/CheckBoxLocators.ts diff --git a/cypress/pagesObjects/checkBox/CheckBoxPage.ts b/cypress/pageObjects/checkBox/CheckBoxPage.ts similarity index 100% rename from cypress/pagesObjects/checkBox/CheckBoxPage.ts rename to cypress/pageObjects/checkBox/CheckBoxPage.ts diff --git a/cypress/pagesObjects/home/HomeLocators.ts b/cypress/pageObjects/home/HomeLocators.ts similarity index 100% rename from cypress/pagesObjects/home/HomeLocators.ts rename to cypress/pageObjects/home/HomeLocators.ts diff --git a/cypress/pagesObjects/home/HomePage.ts b/cypress/pageObjects/home/HomePage.ts similarity index 100% rename from cypress/pagesObjects/home/HomePage.ts rename to cypress/pageObjects/home/HomePage.ts diff --git a/cypress/pagesObjects/radioButton/RadioBtnLocators.ts b/cypress/pageObjects/radioButton/RadioBtnLocators.ts similarity index 100% rename from cypress/pagesObjects/radioButton/RadioBtnLocators.ts rename to cypress/pageObjects/radioButton/RadioBtnLocators.ts diff --git a/cypress/pagesObjects/radioButton/RadioBtnPage.ts b/cypress/pageObjects/radioButton/RadioBtnPage.ts similarity index 100% rename from cypress/pagesObjects/radioButton/RadioBtnPage.ts rename to cypress/pageObjects/radioButton/RadioBtnPage.ts diff --git a/cypress/pagesObjects/textBox/TextBoxLocators.ts b/cypress/pageObjects/textBox/TextBoxLocators.ts similarity index 100% rename from cypress/pagesObjects/textBox/TextBoxLocators.ts rename to cypress/pageObjects/textBox/TextBoxLocators.ts diff --git a/cypress/pagesObjects/textBox/TextBoxPage.ts b/cypress/pageObjects/textBox/TextBoxPage.ts similarity index 100% rename from cypress/pagesObjects/textBox/TextBoxPage.ts rename to cypress/pageObjects/textBox/TextBoxPage.ts