aboutsummaryrefslogtreecommitdiff
path: root/e2e/lib/Page.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-09-21 14:20:38 +0900
committerGitHub <noreply@github.com>2020-09-21 14:20:38 +0900
commit7b8a96bbf7cb6d28c76c061a6b24a9fa821820b1 (patch)
tree4d00b60aa59e946f64ea6402ee7c78fc491f6203 /e2e/lib/Page.ts
parent748ab17dc61a2bb3f1c1e3ea4b43d13ef23d8edf (diff)
parent9bba3ed79123affc8e557cf4211df51bd375742c (diff)
Merge pull request #837 from ueokande/use-styled-components
Use styled-components instead of vanilla CSS/SCSS in console
Diffstat (limited to 'e2e/lib/Page.ts')
-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);
}