From: Ian Jackson Date: Tue, 13 Jul 2021 15:37:19 +0000 (+0100) Subject: tests: wdt-bundles: Drop explicit shift keys for uppercase letters X-Git-Tag: otter-0.7.2~107 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f6379aaab0755568961451875d2c1a91d314919c;p=otter.git tests: wdt-bundles: Drop explicit shift keys for uppercase letters Empirically, it works without this. Signed-off-by: Ian Jackson --- diff --git a/wdriver/wdt-bundles.rs b/wdriver/wdt-bundles.rs index 16d4ec8c..fc92e44f 100644 --- a/wdriver/wdt-bundles.rs +++ b/wdriver/wdt-bundles.rs @@ -32,9 +32,7 @@ impl Ctx { .move_w(&alice, VATIKAN_DECK)? .click() .release() - .key_down(Keys::Shift) .send_keys('A') - .key_up(Keys::Shift) .perform() .did("activate")?; alice.synch()?; @@ -101,9 +99,7 @@ fn tests(UsualSetup { su, alice, bob, ..}: UsualSetup) { .move_pos(handp)? .click() .release() - .key_down(Keys::Shift) .send_keys('C') - .key_up(Keys::Shift) .perform() .did("claim")?; alice.synch()?;