blob: 68d1c6d0958e5016bf33f08c3f5abc83e2ee124b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
const express = require('express');
const path = require('path');
const assert = require('assert');
const eventually = require('./eventually');
const { Builder } = require('lanthan');
const { By, Key } = require('selenium-webdriver');
const newApp = () => {
let app = express();
app.get('/happy', (req, res) => {
res.send(`<!DOCTYPEhtml>
<html lang="en">
<head>
<title>how to be happy</title>
</head>
</html">`);
});
return app;
};
describe('addbookmark command test', () => {
const port = 12321;
let http;
let lanthan;
let webdriver;
let browser;
before(async() => {
http = newApp().listen(port);
lanthan = await Builder
.forBrowser('firefox')
.spyAddon(path.join(__dirname, '..'))
.build();
webdriver = lanthan.getWebDriver();
browser = lanthan.getWebExtBrowser();
});
after(async() => {
http.close();
if (lanthan) {
await lanthan.quit();
}
});
beforeEach(async() => {
await webdriver.navigate().to(`http://127.0.0.1:${port}/happy`);
});
it('should add a bookmark from the current page', async() => {
let body = await webdriver.findElement(By.css('body'));
await body.sendKeys(':');
await webdriver.switchTo().frame(0);
let input = await webdriver.findElement(By.css('input'));
await input.sendKeys('addbookmark how to be happy', Key.ENTER);
await eventually(async() => {
var bookmarks = await browser.bookmarks.search({ title: 'how to be happy' });
assert.equal(bookmarks.length, 1);
assert.equal(bookmarks[0].url, `http://127.0.0.1:${port}/happy`);
});
});
});
|