File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class PutawayListTable extends BasePageModel {
3434
3535 get emptyPutawayList ( ) {
3636 return this . table
37- . locator ( '.empty fade center ' )
37+ . locator ( '.empty' )
3838 . getByText ( 'No orders match the given criteria' ) ;
3939 }
4040}
Original file line number Diff line number Diff line change 11import { expect , Page } from '@playwright/test' ;
22
33import BasePageModel from '@/pages/BasePageModel' ;
4-
5- import SplitModal from '../components/SplitModal' ;
6- import StartPutawayTable from '../components/StartPutawayTable' ;
4+ import SplitModal from '@/pages/putaway/components/SplitModal' ;
5+ import StartPutawayTable from '@/pages/putaway/components/StartPutawayTable' ;
76
87class StartStep extends BasePageModel {
98 table : StartPutawayTable ;
@@ -37,13 +36,13 @@ class StartStep extends BasePageModel {
3736
3837 get validationOnEditCompletedPutaway ( ) {
3938 return this . page
40- . locator ( '.s- alert-box-inner ' )
39+ . locator ( '[class*=" alert"] ' )
4140 . getByText ( / C a n ' t u p d a t e c o m p l e t e d p u t a w a y / ) ;
4241 }
4342
4443 get validationOnDeleteItemFromCompletedPutaway ( ) {
4544 return this . page
46- . locator ( '.s- alert-box-inner ' )
45+ . locator ( '[class*=" alert"] ' )
4746 . getByText ( / C a n ' t r e m o v e a n i t e m o n c o m p l e t e d p u t a w a y / ) ;
4847 }
4948
You can’t perform that action at this time.
0 commit comments