File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,12 @@ const benchRemove = new class extends Benchmark {
182
182
}
183
183
await testTextContains ( driver , '//tbody/tr[5]/td[1]' , '10' ) ;
184
184
await testTextContains ( driver , '//tbody/tr[4]/td[1]' , '4' ) ;
185
+
186
+ // Click on a row the second time
187
+ await testTextContains ( driver , `//tbody/tr[6]/td[1]` , '11' ) ;
188
+ await clickElementByXPath ( driver , `//tbody/tr[6]/td[3]/a/span[1]` ) ;
189
+ await testTextContains ( driver , `//tbody/tr[6]/td[1]` , '12' ) ;
190
+
185
191
}
186
192
async run ( driver : WebDriver ) {
187
193
await clickElementByXPath ( driver , "//tbody/tr[4]/td[3]/a/span[1]" ) ;
@@ -392,7 +398,7 @@ class BenchStartup extends Benchmark {
392
398
type : BenchmarkType . STARTUP ,
393
399
} )
394
400
}
395
- async init ( driver : WebDriver ) { // not used with lighthouse
401
+ async init ( driver : WebDriver ) { // not used with lighthouse
396
402
}
397
403
async run ( driver : WebDriver , framework : FrameworkData ) {
398
404
// not used with lighthouse
You can’t perform that action at this time.
0 commit comments