-
Notifications
You must be signed in to change notification settings - Fork 81
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
fix for single serving test #1934
Conversation
|
ods_ci/tests/Resources/Page/ODH/ODHDashboard/ODHDataScienceProject/ModelServer.resource
Dismissed
Show dismissed
Hide dismissed
Robot Results
|
@@ -19,13 +19,14 @@ ${S3_REGION_DC_INPUT_XP}= xpath=//input[@aria-label="Field list AWS_DEF | |||
${S3_BUCKET_DC_INPUT_XP}= xpath=//input[@aria-label="Field list AWS_S3_BUCKET"] | |||
${S3_DEFAULT_BUCKET}= ods-ci-s3 | |||
${MS_TABLE_PROJECT}= /../../td[@data-label="Project"] | |||
${MS_TABLE_ENDPOINT_INPUT}= /ancestor::tr//td[@data-label="Inference endpoint"]//button[@data-testid='internal-service-button'] | |||
${MS_TABLE_ENDPOINT_INPUT}= /ancestor::tr//td[@data-label="Inference endpoint"]//button[@id='copy-button-4'] |
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.
Hm, interesting - truly moving away from the data-testid
to a simple id
? Was it removed from the element so we can't use it anymore?
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.
yeah there is only a data-testid for the internal endpoint option at the moment. If the external route option is enabled there is no data-testid
This is to add UI fixes for ODS-2626 & ODS-2552. Previous test updates were for multi-model scenario, the original UI bugs were in the single model server test. Signed-off-by: manosnoam <[email protected]>
Backport PR #1934 to branch 2.14: Fix for single serving test This is to add UI fixes for ODS-2626 & ODS-2552. Previous test updates were for multi-model scenario, the original UI bugs were in the single model server test. Signed-off-by: manosnoam <[email protected]>
This is to add UI fixes for ODS-2626 & ODS-2552. Previous test updates were for multi-model scenario, the original UI bugs were in the single model server test.