From 0b312b08f22a61416460f6c4373bb55e65120d74 Mon Sep 17 00:00:00 2001 From: Alex Ross Date: Mon, 3 Feb 2020 12:50:19 +0100 Subject: [PATCH] CSS smoketest fix for high DPI on Windows @sandy081 and @joaomoreno --- test/automation/src/editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/automation/src/editor.ts b/test/automation/src/editor.ts index 97a8b5214a2..dd564c9bd52 100644 --- a/test/automation/src/editor.ts +++ b/test/automation/src/editor.ts @@ -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); } -- GitLab