CSS smoketest fix for high DPI on Windows

@sandy081 and @joaomoreno
This commit is contained in:
Alex Ross 2020-02-03 12:50:19 +01:00
parent ba9c2775f0
commit 0b312b08f2

View file

@ -89,7 +89,7 @@ export class Editor {
const line = `${editor} .view-lines > .view-line:nth-child(${lineNumber})`;
const textarea = `${editor} textarea`;
await this.code.waitAndClick(line, 0, 0);
await this.code.waitAndClick(line, 1, 1);
await this.code.waitForActiveElement(textarea);
}