diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 17:23:06 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-05-04 17:24:18 +0900 |
commit | f4aa393ba4216bac48bd34181700e0d545590ead (patch) | |
tree | 3b292bc5da2a7216956524aafe077202def0f550 /e2e/lib | |
parent | 4c873bb833ebe2264866f217ad1865965e66101d (diff) |
Add test cases for colorscheme
Diffstat (limited to 'e2e/lib')
-rw-r--r-- | e2e/lib/Console.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/e2e/lib/Console.ts b/e2e/lib/Console.ts index 68c0e10..0bae2f7 100644 --- a/e2e/lib/Console.ts +++ b/e2e/lib/Console.ts @@ -76,6 +76,12 @@ export class Console { }); } + async getTheme(): Promise<string> { + const wrapper = await this.webdriver.findElement(By.css("div[data-theme]")); + const theme = await wrapper.getAttribute("data-theme"); + return theme; + } + async close(): Promise<void> { const input = await this.webdriver.findElement(By.css("input")); await input.sendKeys(Key.ESCAPE); |