File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,17 @@ describe('Overview > Reports Tests', () => {
19
19
cy . get ( list . children ( ) [ 0 ] ) . click ( ) ;
20
20
} ) ;
21
21
} ) ;
22
+
22
23
// Fill out report information
23
24
cy . get ( '#name' ) . type ( 'Cypress Test Report' , { force : true } ) ;
24
25
cy . get ( '#title' ) . type ( 'Cypress test report title' , { force : true } ) ;
25
26
26
27
let basedOn = '' ;
27
28
let columns = [ ] ;
28
29
let tableName = '' ;
29
- cy . get ( ':nth-child(4) > .col-md-8 > .btn-group > .btn' ) . click ( { force : true } ) ;
30
- cy . get ( ':nth-child(4) > .col-md-8 > .btn-group > .open > .dropdown-menu > [data-original-index="1"] > a' ) . then ( ( option ) => {
30
+
31
+ cy . get ( ':nth-child(3) > .col-md-8 > .btn-group > .btn' ) . click ( { force : true } ) ;
32
+ cy . get ( ':nth-child(3) > .col-md-8 > .btn-group > .open > .dropdown-menu > [data-original-index="1"] > a' ) . then ( ( option ) => {
31
33
cy . get ( option ) . click ( { force : true } ) ;
32
34
basedOn = option [ 0 ] . innerText ;
33
35
tableName = basedOn . substring ( 0 , basedOn . length - 1 ) . replace ( ' ' , '' ) ;
You can’t perform that action at this time.
0 commit comments