2.1.12 • Published 7 years ago
the-e2e v2.1.12
the-e2e
E2E testing for the-frameworks
Installation
$ npm install the-e2e --save
Usage
'use strict'
const {TheE2E} = require('the-e2e')
const assert = require('assert')
async function tryExample () {
const e2e = new TheE2E({
'google:title': async (browser) => {
await browser.url('http://www.google.com')
const title = await browser.getTitle()
assert.ok(title)
assert.ok(title.toLowerCase().match('google'))
},
})
await e2e.run('google:title')
}
tryExample().catch((err) => console.error(err))
API Guide
License
This software is released under the MIT License.
Links
2.1.12
7 years ago
2.1.11
7 years ago
2.1.10
7 years ago
2.1.9
7 years ago
2.1.8
7 years ago
2.1.7
7 years ago
2.1.6
7 years ago
2.1.5
7 years ago
2.1.4
7 years ago
2.1.3
7 years ago
2.1.2
7 years ago
2.1.1
7 years ago
2.1.0
7 years ago
1.3.2
7 years ago
1.3.0
7 years ago
1.2.3
7 years ago
1.2.2
7 years ago
1.2.1
7 years ago
1.2.0
7 years ago
1.1.1
7 years ago
1.1.0
7 years ago
1.0.3
7 years ago
1.0.2
7 years ago
1.0.1
7 years ago
1.0.0
7 years ago