|
106 | 106 | //Click on Read More link for selected command
|
107 | 107 | await t.click(cliPage.readMoreButton);
|
108 | 108 | //Check new opened window page with the correct URL
|
109 |
| - await t.expect(getPageUrl()).eql(externalPageLink); |
| 109 | + await t.expect(getPageUrl()).eql(externalPageLink, 'The opened page'); |
110 | 110 | await t.switchToParentWindow();
|
111 | 111 | });
|
112 | 112 | test
|
|
126 | 126 | //Click on Read More link for selected command
|
127 | 127 | await t.click(cliPage.readMoreButton);
|
128 | 128 | //Check new opened window page with the correct URL
|
129 |
| - await t.expect(getPageUrl()).eql(externalPageLink); |
| 129 | + await t.expect(getPageUrl()).eql(externalPageLink, 'The opened page'); |
130 | 130 | await t.switchToParentWindow();
|
131 | 131 | });
|
132 | 132 | test
|
|
146 | 146 | //Click on Read More link for selected command
|
147 | 147 | await t.click(cliPage.readMoreButton);
|
148 | 148 | //Check new opened window page with the correct URL
|
149 |
| - await t.expect(getPageUrl()).eql(externalPageLink); |
| 149 | + await t.expect(getPageUrl()).eql(externalPageLink, 'The opened page'); |
150 | 150 | await t.switchToParentWindow();
|
151 | 151 | });
|
152 | 152 | test
|
|
184 | 184 | //Click on Read More link for selected command
|
185 | 185 | await t.click(cliPage.readMoreButton);
|
186 | 186 | //Check new opened window page with the correct URL
|
187 |
| - await t.expect(getPageUrl()).eql(externalPageLinks[i]); |
| 187 | + await t.expect(getPageUrl()).eql(externalPageLinks[i], 'The opened page'); |
188 | 188 | //Close the window with external link to switch to the application window
|
189 | 189 | await t.closeWindow();
|
190 | 190 | i++;
|
|
208 | 208 | //Verify that user can use Read More link for Gears group in Command Helper (RedisGears module)
|
209 | 209 | await t.click(cliPage.readMoreButton);
|
210 | 210 | //Check new opened window page with the correct URL
|
211 |
| - await t.expect(getPageUrl()).eql(externalPageLink); |
| 211 | + await t.expect(getPageUrl()).eql(externalPageLink, 'The opened page'); |
212 | 212 | //Close the window with external link to switch to the application window
|
213 | 213 | await t.closeWindow();
|
214 | 214 | });
|
|
250 | 250 | //Verify that user can use Read More link for Bloom, Cuckoo, CMS, TDigest, TopK groups in Command Helper (RedisBloom module).
|
251 | 251 | await t.click(cliPage.readMoreButton);
|
252 | 252 | //Check new opened window page with the correct URL
|
253 |
| - await t.expect(getPageUrl()).eql(externalPageLinks[i]); |
| 253 | + await t.expect(getPageUrl()).eql(externalPageLinks[i], 'The opened page'); |
254 | 254 | //Close the window with external link to switch to the application window
|
255 | 255 | await t.closeWindow();
|
256 | 256 | i++;
|
|
0 commit comments