Update pasteIntoField method (#14205)

feature/default_network_editable
PeterYinusa 3 years ago committed by GitHub
parent 729e89015f
commit 05fc865cbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      test/e2e/webdriver/driver.js

@ -274,7 +274,9 @@ class Driver {
await this.executeScript(
`navigator.clipboard.writeText("${contentToPaste}")`,
);
await this.fill(element, Key.chord(Key.CONTROL, 'v'));
const modifierKey =
process.platform === 'darwin' ? Key.COMMAND : Key.CONTROL;
await this.fill(element, Key.chord(modifierKey, 'v'));
}
// Navigation

Loading…
Cancel
Save