test: write remaining regression Account Settings tests [WPB-25329]#21405
Open
zhannach wants to merge 4 commits into
Open
test: write remaining regression Account Settings tests [WPB-25329]#21405zhannach wants to merge 4 commits into
zhannach wants to merge 4 commits into
Conversation
Contributor
|
🔗 Download Full Report Artifact 🧪 Playwright Test Summary
|
markbrockhoff
requested changes
May 29, 2026
| await pages.setUsername().setUsername(userB.username); | ||
| await pages.setUsername().clickNextButton(); | ||
| await pages.registerSuccess().clickOpenWireWebButton(); | ||
| await modals.confirm().cancelButton.click(); |
Collaborator
There was a problem hiding this comment.
The share data consent modal will only be shown after the login, so better give it the extended LOGIN_TIMEOUT in case the login takes a bit longer.
Suggested change
| await modals.confirm().cancelButton.click(); | |
| await modals.confirm().cancelButton.click({timeout: LOGIN_TIMEOUT}); |
a563d02 to
aa78828
Compare
|
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.



Automated the remaining 3 test case under the Account Settings regression test suite.
Test Cases Automated:
@TC-1938: Automated verification for specific Account Settings edge cases.
@TC-1939: Verified username auto-generation logic across multiple localized character sets and emojis.
@TC-1942: Verified username uniqueness rules, preventing duplicate claims during onboarding and within profile settings.