aboutsummaryrefslogtreecommitdiff
path: root/e2e/scroll.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2020-04-13 20:37:36 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2020-04-13 20:37:36 +0900
commite1dac618a8b8929f601c7ec8aca3842c5ebf9d03 (patch)
tree6a914a8243c8c02e7752a83667a54d3fa832955c /e2e/scroll.test.ts
parent685f2b7b69218b06b5bb676069e35f79c5048c9b (diff)
Use plugin:prettier/recommended
Diffstat (limited to 'e2e/scroll.test.ts')
-rw-r--r--e2e/scroll.test.ts93
1 files changed, 50 insertions, 43 deletions
diff --git a/e2e/scroll.test.ts b/e2e/scroll.test.ts
index 9b39a2e..277bb2e 100644
--- a/e2e/scroll.test.ts
+++ b/e2e/scroll.test.ts
@@ -1,134 +1,141 @@
-import * as path from 'path';
-import * as assert from 'assert';
+import * as path from "path";
+import * as assert from "assert";
-import TestServer from './lib/TestServer';
-import { Builder, Lanthan } from 'lanthan';
-import { WebDriver, Key } from 'selenium-webdriver';
-import Page from './lib/Page';
+import TestServer from "./lib/TestServer";
+import { Builder, Lanthan } from "lanthan";
+import { WebDriver, Key } from "selenium-webdriver";
+import Page from "./lib/Page";
describe("scroll test", () => {
- const server = new TestServer().receiveContent('/',
- `<!DOCTYPE html><html lang="en"><body style="width:10000px; height:10000px"></body></html>`,
+ const server = new TestServer().receiveContent(
+ "/",
+ `<!DOCTYPE html><html lang="en"><body style="width:10000px; height:10000px"></body></html>`
);
let lanthan: Lanthan;
let webdriver: WebDriver;
let page: Page;
- before(async() => {
- lanthan = await Builder
- .forBrowser('firefox')
- .spyAddon(path.join(__dirname, '..'))
+ before(async () => {
+ lanthan = await Builder.forBrowser("firefox")
+ .spyAddon(path.join(__dirname, ".."))
.build();
webdriver = lanthan.getWebDriver();
await server.start();
});
- after(async() => {
+ after(async () => {
await server.stop();
if (lanthan) {
await lanthan.quit();
}
});
- beforeEach(async() => {
+ beforeEach(async () => {
await webdriver.navigate().to(server.url());
page = await Page.currentContext(webdriver);
});
-
- it('scrolls up by j', async () => {
- await page.sendKeys('j');
+ it("scrolls up by j", async () => {
+ await page.sendKeys("j");
const scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 64);
});
- it('scrolls down by k', async () => {
+ it("scrolls down by k", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 200));
- await page.sendKeys('k');
+ await page.sendKeys("k");
const scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 136);
});
- it('scrolls left by h', async () => {
+ it("scrolls left by h", async () => {
await webdriver.executeScript(() => window.scrollTo(100, 100));
- await page.sendKeys('h');
+ await page.sendKeys("h");
- const pageXOffset = await webdriver.executeScript(() => window.pageXOffset) as number;
+ const pageXOffset = (await webdriver.executeScript(
+ () => window.pageXOffset
+ )) as number;
assert.strictEqual(pageXOffset, 36);
});
- it('scrolls left by l', async () => {
+ it("scrolls left by l", async () => {
await webdriver.executeScript(() => window.scrollTo(100, 100));
- await page.sendKeys('l');
+ await page.sendKeys("l");
- const pageXOffset = await webdriver.executeScript(() => window.pageXOffset) as number;
+ const pageXOffset = (await webdriver.executeScript(
+ () => window.pageXOffset
+ )) as number;
assert.strictEqual(pageXOffset, 164);
});
- it('scrolls top by gg', async () => {
+ it("scrolls top by gg", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 100));
- await page.sendKeys('g', 'g');
+ await page.sendKeys("g", "g");
const scrollY = await page.getScrollY();
assert.strictEqual(scrollY, 0);
});
- it('scrolls bottom by G', async () => {
+ it("scrolls bottom by G", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 100));
- await page.sendKeys(Key.SHIFT, 'g');
+ await page.sendKeys(Key.SHIFT, "g");
const scrollY = await page.getScrollY();
assert.ok(scrollY > 5000);
});
- it('scrolls bottom by 0', async () => {
+ it("scrolls bottom by 0", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 100));
- await page.sendKeys(Key.SHIFT, '0');
+ await page.sendKeys(Key.SHIFT, "0");
- const pageXOffset = await webdriver.executeScript(() => window.pageXOffset) as number;
+ const pageXOffset = (await webdriver.executeScript(
+ () => window.pageXOffset
+ )) as number;
assert.ok(pageXOffset === 0);
});
- it('scrolls bottom by $', async () => {
+ it("scrolls bottom by $", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 100));
- await page.sendKeys(Key.SHIFT, '$');
+ await page.sendKeys(Key.SHIFT, "$");
- const pageXOffset = await webdriver.executeScript(() => window.pageXOffset) as number;
+ const pageXOffset = (await webdriver.executeScript(
+ () => window.pageXOffset
+ )) as number;
assert.ok(pageXOffset > 5000);
});
- it('scrolls bottom by <C-U>', async () => {
+ it("scrolls bottom by <C-U>", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 1000));
- await page.sendKeys(Key.CONTROL, 'u');
+ await page.sendKeys(Key.CONTROL, "u");
const pageHeight = await page.pageHeight();
const scrollY = await page.getScrollY();
assert.ok(Math.abs(scrollY - (1000 - Math.floor(pageHeight / 2))) < 5);
});
- it('scrolls bottom by <C-D>', async () => {
+ it("scrolls bottom by <C-D>", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 1000));
- await page.sendKeys(Key.CONTROL, 'd');
+ await page.sendKeys(Key.CONTROL, "d");
const pageHeight = await page.pageHeight();
const scrollY = await page.getScrollY();
assert.ok(Math.abs(scrollY - (1000 + Math.floor(pageHeight / 2))) < 5);
});
- it('scrolls bottom by <C-B>', async () => {
+ it("scrolls bottom by <C-B>", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 1000));
- await page.sendKeys(Key.CONTROL, 'b');
+ await page.sendKeys(Key.CONTROL, "b");
const pageHeight = await page.pageHeight();
const scrollY = await page.getScrollY();
assert.ok(Math.abs(scrollY - (1000 - pageHeight)) < 5);
});
- it('scrolls bottom by <C-F>', async () => {
+ it("scrolls bottom by <C-F>", async () => {
await webdriver.executeScript(() => window.scrollTo(0, 1000));
- await page.sendKeys(Key.CONTROL, 'f');
+ await page.sendKeys(Key.CONTROL, "f");
const pageHeight = await page.pageHeight();
const scrollY = await page.getScrollY();