Skip to content

Commit

Permalink
corrigindo para pageObjects
Browse files Browse the repository at this point in the history
  • Loading branch information
feroline committed Jul 16, 2024
1 parent d65273c commit 7bfb9df
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/elements/apresentacao.cy.ts
Original file line number Diff line number Diff line change
@@ -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();

Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/elements/checkBox.cy.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/elements/radioButton.cy.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
4 changes: 2 additions & 2 deletions cypress/e2e/elements/textBox.cy.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/home.cy.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7bfb9df

Please sign in to comment.