From 44c2a638875923fd82af4652e77803b6459e074d Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Thu, 2 Nov 2023 12:52:09 -0500 Subject: [PATCH] Fix the interactors URL The actual interactors URL is changed to just `/interactors`, not `/bigtest/interactors` --- legacy/src/blog/2021-08-04-interactors-design-systems.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/src/blog/2021-08-04-interactors-design-systems.md b/legacy/src/blog/2021-08-04-interactors-design-systems.md index c40ea360..9fb6c2d9 100644 --- a/legacy/src/blog/2021-08-04-interactors-design-systems.md +++ b/legacy/src/blog/2021-08-04-interactors-design-systems.md @@ -33,7 +33,7 @@ There's a well-trod design pattern for fixing this problem: [page objects](https ## Introducing Interactors -At Frontside, we've built [Interactors](https://frontside.com/bigtest/interactors) (`@interactors/html`), a library inspired by page objects that helps teams structure, share, and reuse their UI testing practices. +At Frontside, we've built [Interactors](https://frontside.com/interactors) (`@interactors/html`), a library inspired by page objects that helps teams structure, share, and reuse their UI testing practices. Interactors evolve the idea of a page object. Modern applications are usually arranged into composable components, and the "page" is no longer the dominant unit of organization. An Interactor is similarly composable, and can abstract any level of object in the DOM hierarchy.