@@ -50,7 +50,7 @@ test('Verify that user can see saved article in Enablement area when he leaves W
50
50
await t . expect ( tutorials . internalLinkWorkingWithHashes . visible ) . ok ( 'The working with hashes link is not visible' , { timeout : 5000 } ) ;
51
51
// Open Working with Hashes section
52
52
await t . click ( tutorials . internalLinkWorkingWithHashes ) ;
53
- let selector = tutorials . getRunSelector ( 'Create' ) ;
53
+ let selector = tutorials . getRunSelector ( 'Create a hash ' ) ;
54
54
55
55
// https://redislabs.atlassian.net/browse/RI-5340
56
56
// Verify that user can see “Open Workbench in the left menu to see the command results.” tooltip when hovering over Run button
@@ -59,7 +59,7 @@ test('Verify that user can see saved article in Enablement area when he leaves W
59
59
60
60
// Check the button from Hash page is visible
61
61
await tutorials . runBlockCode ( 'Create a hash' ) ;
62
- let selector = await tutorials . getRunSelector ( 'Create a hash' ) ;
62
+ selector = tutorials . getRunSelector ( 'Create a hash' ) ;
63
63
await t . expect ( selector . visible ) . ok ( 'The end of the page is not visible' ) ;
64
64
65
65
// Verify that user can see the “success” icon during 5 s after a command has been run and button can't be clicked at that time
@@ -72,14 +72,14 @@ test('Verify that user can see saved article in Enablement area when he leaves W
72
72
// Go back to Workbench page
73
73
await t . click ( myRedisDatabasePage . NavigationPanel . workbenchButton ) ;
74
74
// Verify that the same article is opened in Enablement area
75
- selector = await tutorials . getRunSelector ( 'Create a hash' ) ;
75
+ selector = tutorials . getRunSelector ( 'Create a hash' ) ;
76
76
await t . expect ( selector . visible ) . ok ( 'The end of the page is not visible' ) ;
77
77
// Go to list of DBs page
78
78
await t . click ( myRedisDatabasePage . NavigationPanel . myRedisDBButton ) ;
79
79
// Go back to active DB again
80
80
await myRedisDatabasePage . clickOnDBByName ( ossStandaloneConfig . databaseName ) ;
81
81
// Check that user is on Workbench page and "Working with Hashes" page is displayed
82
- selector = await tutorials . getRunSelector ( 'Create a hash' ) ;
82
+ selector = tutorials . getRunSelector ( 'Create a hash' ) ;
83
83
await t . expect ( selector . visible ) . ok ( 'The end of the page is not visible' ) ;
84
84
} ) ;
85
85
//skipped due the issue RI-2384
0 commit comments