Skip to content

Commit d1af435

Browse files
committed
added additional actions and code refactoring
1 parent 9ea9008 commit d1af435

File tree

12 files changed

+116
-11
lines changed

12 files changed

+116
-11
lines changed

src/apps/ui-testing-playground/pages/ajax-data.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/ajax-data/data.json";
44
import * as locators from "../locators/ajax-data.locator";
55
import { test, expect } from "../fixtures";

src/apps/ui-testing-playground/pages/class-attribute.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Page, TestInfo } from "@playwright/test";
22
import { test, expect } from "../fixtures";
3-
import * as actions from "@utils/base/actions";
3+
import * as actions from "@utils/base/web/actions";
44
import * as data from "@data/apps/ui-testing-playground/class-attribute/data.json";
55
import * as locators from "../locators/class-attribute.locator";
66

src/apps/ui-testing-playground/pages/click.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/click/data.json";
44
import * as locators from "../locators/click.locator";
55
import { test, expect } from "../fixtures";

src/apps/ui-testing-playground/pages/common.page.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import { matchScreenshot } from "@utils/base/screenshots";
3-
import * as actions from "@utils/base/actions";
2+
import { matchScreenshot } from "@utils/base/web/screenshots";
3+
import * as actions from "@utils/base/web/actions";
44
import config from "@config";
55

66
export default class CommonPage {

src/apps/ui-testing-playground/pages/dynamic-id.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/dynamic-id/data.json";
44
import * as locators from "../locators/dynamic-id.locator";
55

src/apps/ui-testing-playground/pages/hidden-layers.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/hidden-layers/data.json";
44
import * as locators from "../locators/hidden-layers.locator";
55
import { test, expect } from "../fixtures";

src/apps/ui-testing-playground/pages/home.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Page, TestInfo } from "@playwright/test";
22
import { test, expect } from "../fixtures";
33

44
import * as data from "@data/apps/ui-testing-playground/home/data.json";
5-
import * as actions from "@utils/base/actions";
5+
import * as actions from "@utils/base/web/actions";
66
import * as locators from "../locators/home.locator";
77

88
export default class HomePage {

src/apps/ui-testing-playground/pages/load-delays.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/load-delays/data.json";
44
import * as locators from "../locators/load-delays.locator";
55

src/apps/ui-testing-playground/pages/scrollbars.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/scrollbars/data.json";
44
import * as locators from "../locators/scrollbars.locator";
55

src/apps/ui-testing-playground/pages/text-input.page.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Page, TestInfo } from "@playwright/test";
2-
import * as actions from "@utils/base/actions";
2+
import * as actions from "@utils/base/web/actions";
33
import * as data from "@data/apps/ui-testing-playground/text-input/data.json";
44
import * as locators from "../locators/text-input.locator";
55
import { test, expect } from "../fixtures";

0 commit comments

Comments
 (0)