feat: page object lifecycle hooks and Data Objects#5512
Open
feat: page object lifecycle hooks and Data Objects#5512
Conversation
Page objects now support lifecycle hooks that mirror the helper hook system. _before() runs lazily on first method call per test, _after() runs after each test for used page objects, and _beforeSuite()/_afterSuite() run for all page objects that define them. Also documents Data Objects pattern for REST-based test data management with automatic cleanup. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
_before,_after,_beforeSuite,_afterSuite) to page objects, mirroring the helper hook system_before()runs lazily on first method call per test (not on injection),_after()only runs for page objects actually usedlib/listener/pageobjects.jswires hooks into the event system, registered after helpers listenerconst { I } = inject()+export default ClassName_after()cleanupTest plan
🤖 Generated with Claude Code