File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/e2e/tests/regression/workbench Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -180,20 +180,20 @@ test
180
180
await t . expect ( workbenchPage . scrolledEnablementArea . visible ) . ok ( 'Enablement area is not visible after clicked' ) ;
181
181
182
182
// Verify that user can bulk upload data by relative path
183
- await t . click ( workbenchPage . uploadDataBulkBtn . withExactText ( 'Upload relative' ) ) ;
183
+ await t . click ( workbenchPage . uploadDataBulkBtn . withText ( 'Upload relative' ) ) ;
184
184
await t . click ( workbenchPage . uploadDataBulkApplyBtn ) ;
185
185
// Verify that user can see the summary when the command execution is completed
186
186
await verifyCompletedResultText ( allKeysResults ) ;
187
187
188
188
// Verify that user can bulk upload data by absolute path
189
- await t . click ( workbenchPage . uploadDataBulkBtn . withExactText ( 'Upload absolute' ) ) ;
189
+ await t . click ( workbenchPage . uploadDataBulkBtn . withText ( 'Upload absolute' ) ) ;
190
190
await t . click ( workbenchPage . uploadDataBulkApplyBtn ) ;
191
191
await verifyCompletedResultText ( absolutePathResults ) ;
192
192
193
193
// Verify that user can't upload file by invalid relative path
194
194
// Verify that user can't upload file by invalid absolute path
195
195
for ( const path of invalidPathes ) {
196
- await t . click ( workbenchPage . uploadDataBulkBtn . withExactText ( path ) ) ;
196
+ await t . click ( workbenchPage . uploadDataBulkBtn . withText ( path ) ) ;
197
197
await t . click ( workbenchPage . uploadDataBulkApplyBtn ) ;
198
198
// Verify that user can see standard error messages when any error occurs while finding the file or parsing it
199
199
await t . expect ( workbenchPage . Toast . toastError . textContent ) . contains ( 'Data file was not found' , 'Bulk upload not failed' ) ;
You can’t perform that action at this time.
0 commit comments