File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export class MonitorPage {
24
24
monitorArea = Selector ( '[data-testid=monitor]' ) ;
25
25
monitorWarningMessage = Selector ( '[data-testid=monitor-warning-message]' ) ;
26
26
monitorCommandLinePart = Selector ( '[data-testid=monitor] span' ) ;
27
- monitorCommandLineTimestamp = Selector ( '[data-testid=monitor] span' ) . withText ( / [ 0 - 9 ] { 2 } : [ 0 - 9 ] { 2 } : [ 0 - 9 ] { 2 } .[ 0 - 9 ] { 3 } / ) ;
27
+ monitorCommandLineTimestamp = Selector ( '[data-testid=monitor] span' ) . withText ( / [ 0 - 9 ] { 2 } : [ 0 - 9 ] { 2 } : [ 0 - 9 ] { 2 } \ .[ 0 - 9 ] { 3 } / ) ;
28
28
monitorNoPermissionsMessage = Selector ( '[data-testid=monitor-error-message]' ) ;
29
29
saveLogToolTip = Selector ( '[data-testid=save-log-tooltip]' ) ;
30
30
monitorNotStartedElement = Selector ( '[data-testid=monitor-not-started]' ) ;
Original file line number Diff line number Diff line change 112
112
//Search by not existed key pattern
113
113
await browserPage . searchByKeyName ( `${ chance . string ( { length : 10 } ) } *` ) ;
114
114
//Check that the last child is updated
115
- for ( let i = 0 ; i <= 10 ; i ++ ) {
115
+ for ( let i = 0 ; i <= 5 ; i ++ ) {
116
116
const previousTimestamp = await monitorPage . monitorCommandLineTimestamp . nth ( - 1 ) . textContent ;
117
117
await t . wait ( 5500 ) ;
118
118
const nextTimestamp = await monitorPage . monitorCommandLineTimestamp . nth ( - 1 ) . textContent ;
You can’t perform that action at this time.
0 commit comments