Skip to content

Commit 7bc422a

Browse files
authored
fix(docs): typo in best practices (#3524)
1 parent ac92fe5 commit 7bc422a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/best.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ When a project is growing and more and more tests are required, it's time to thi
7474
Here is a recommended strategy what to store where:
7575

7676
* Move site-wide actions into an **Actor** file (`custom_steps.js` file). Such actions like `login`, using site-wide common controls, like drop-downs, rich text editors, calendars.
77-
* Move page-based actions and selectors into **Page Object**. All acitivities made on that page can go into methods of page object. If you test Single Page Application a PageObject should represent a screen of your application.
77+
* Move page-based actions and selectors into **Page Object**. All activities made on that page can go into methods of page object. If you test Single Page Application a PageObject should represent a screen of your application.
7878
* When site-wide widgets are used, interactions with them should be placed in **Page Fragments**. This should be applied to global navigation, modals, widgets.
7979
* A custom action that requires some low-level driver access, should be placed into a **Helper**. For instance, database connections, complex mouse actions, email testing, filesystem, services access.
8080

0 commit comments

Comments
 (0)