@@ -10,7 +10,6 @@ import {Browser, Key} from 'webdriverio';
1010import {
1111 PAUSE_TIME ,
1212 focusOnBlock ,
13- tabNavigateToWorkspace ,
1413 testFileLocations ,
1514 testSetup ,
1615 sendKeyAndWait ,
@@ -36,7 +35,6 @@ suite('Move tests', function () {
3635 test ( 'Start moving statement blocks' , async function ( ) {
3736 for ( let i = 1 ; i < 7 ; i ++ ) {
3837 // Navigate to statement_<i>.
39- await tabNavigateToWorkspace ( this . browser ) ;
4038 await focusOnBlock ( this . browser , `statement_${ i } ` ) ;
4139
4240 // Get information about parent connection of selected block,
@@ -96,7 +94,6 @@ suite('Move tests', function () {
9694 test ( 'Start moving value blocks' , async function ( ) {
9795 for ( let i = 1 ; i < 7 ; i ++ ) {
9896 // Navigate to statement_<i>.
99- await tabNavigateToWorkspace ( this . browser ) ;
10097 await focusOnBlock ( this . browser , `value_${ i } ` ) ;
10198
10299 // Get information about parent connection of selected block,
@@ -166,7 +163,6 @@ suite('Move tests', function () {
166163 } ) ;
167164
168165 // Navigate to unconnectable block, get initial coords and start move.
169- await tabNavigateToWorkspace ( this . browser ) ;
170166 await focusOnBlock ( this . browser , BLOCK ) ;
171167 const startCoordinate = await getCoordinate ( this . browser , BLOCK ) ;
172168 await sendKeyAndWait ( this . browser , 'm' ) ;
0 commit comments