aboutsummaryrefslogtreecommitdiff
path: root/e2e
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-09-21 12:52:35 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-09-21 13:41:45 +0900
commit9bba3ed79123affc8e557cf4211df51bd375742c (patch)
treebf326335a54a01e9352c8c5227107a645ef7e0f2 /e2e
parent35da038ba324a32eed63c04e19fd31d7137880a9 (diff)
Remove unused className
Diffstat (limited to 'e2e')
-rw-r--r--e2e/lib/Page.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/e2e/lib/Page.ts b/e2e/lib/Page.ts
index 85bda8d..6531f19 100644
--- a/e2e/lib/Page.ts
+++ b/e2e/lib/Page.ts
@@ -46,9 +46,7 @@ export default class Page {
await this.sendKeys(":");
await this.webdriver.wait(until.elementIsVisible(iframe));
await this.webdriver.switchTo().frame(0);
- await this.webdriver.wait(
- until.elementLocated(By.css("input.vimvixen-console-command-input"))
- );
+ await this.webdriver.wait(until.elementLocated(By.css("input")));
return new Console(this.webdriver);
}