-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OZ-562: Refactored component-specific user actions #88
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like it, much clearer. However it requires further naming refinements.
I'm still debugging the tests to fix the build failures! |
The PR is ready to go into main. |
await homePage.goToClients(); | ||
await homePage.selectOpenMRSId() | ||
await keycloack.goToClients(); | ||
await keycloack.selectOpenMRSId() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it be more something like selectOpenMRSClient()
to remain in Keycloak's lingo? Or this is UI-driven and there is literally something called ID on the screen?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ActuallyselectOpenMRSClient()
would imply something different however, this is UI-driven with a label called client Id on the screen.
await homePage.goToClients(); | ||
await homePage.selectSupersetId(); | ||
await keycloack.goToClients(); | ||
await keycloack.selectSupersetId(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same remark here about "id".
Ticket OZ-562