We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43cd8f2 commit 9d851caCopy full SHA for 9d851ca
test/helpers/selenium-helper.js
@@ -236,8 +236,13 @@ class SeleniumHelper {
236
const outerError = new Error(`loadUri failed with arguments:\n\turi: ${uri}`);
237
try {
238
await this.setTitle(`loadUri ${uri}`);
239
+ // TODO: The height is set artificially high to fix this test:
240
+ // 'Loading with locale shows correct translation for string length block parameter'
241
+ // which fails because the block is offscreen.
242
+ // We should set this back to 1024x768 once we find a good way to fix that test.
243
+ // Using `scrollIntoView` didn't seem to do the trick.
244
const WINDOW_WIDTH = 1024;
- const WINDOW_HEIGHT = 768;
245
+ const WINDOW_HEIGHT = 960;
246
await this.driver
247
.get(`file://${uri}`);
248
0 commit comments