Skip to content

Commit 4d4d31b

Browse files
committed
Basic and advanced techniques blog
1 parent 24c2505 commit 4d4d31b

File tree

3 files changed

+87
-52
lines changed

3 files changed

+87
-52
lines changed

getting-started/package-lock.json

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

getting-started/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"author": "",
1111
"license": "ISC",
1212
"devDependencies": {
13-
"chromedriver": "114.0.2",
13+
"chromedriver": "116",
1414
"nightwatch": "^3.0.1"
1515
}
1616
}

getting-started/test/home.spec.js

+78-43
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,120 @@
11
describe('Nighwatch homepage', function () {
2-
beforeEach(async function (browser) {
3-
await browser.window.maximize()
4-
await browser.navigateTo('/')
2+
beforeEach(function (browser) {
3+
browser.window.maximize()
4+
browser.navigateTo('/')
55
})
66
afterEach(browser => browser.end())
77

88
it('Should have the correct title', function(browser) {
9-
browser.assert.textEquals('h1', 'Introducing Nightwatch v3')
9+
browser.element.find('h1').getText().assert.equals('Introducing Nightwatch v3')
1010
})
1111

12-
it('Should lead to the installation page on click of Get Started', async function(browser) {
13-
await browser.click(browser.element.findByText('Get Started'))
12+
it('Should lead to the installation page on click of Get Started', function (browser) {
13+
browser.element.findByText('Get Started').click()
14+
browser.element.findByPlaceholderText('Filter by title').waitUntil('visible')
15+
browser.element.find('h1').getText().assert.equals('Install Nightwatch')
1416
browser.assert.titleEquals('Getting Started | Developer Guide | Nightwatch.js')
15-
browser.assert.equal(await browser.element.find('h1').getText(), 'Install Nightwatch')
16-
const $filter_el = await browser.element.findByPlaceholderText('Filter by title')
17-
browser.expect(await $filter_el.getAttribute('autocomplete')).to.equal('off')
1817
browser.assert.urlContains('nightwatchjs.org/guide/quickstarts')
18+
browser.element.findByPlaceholderText('Filter by title')
19+
.getAttribute('autocomplete').assert.equals('off')
20+
;
1921
})
2022

21-
it('Should allow search and show correct results', async function(browser) {
22-
await browser.click('#docsearch').waitForElementVisible('.DocSearch-Modal')
23-
const $search_input = browser.element.findByPlaceholderText('Search docs')
24-
await browser
25-
.sendKeys($search_input, 'click ')
26-
.pause(50) // Pausing for the JS tick
27-
.waitForElementPresent('.DocSearch-Dropdown-Container')
28-
.sendKeys($search_input, [browser.Keys.ARROW_DOWN, browser.Keys.ENTER])
29-
.assert.textContains('h1', '.rightClick()')
30-
;
23+
it('Should allow search and show correct results', function (browser) {
24+
browser.element.find('#docsearch').click()
25+
browser.element.find('.DocSearch-Modal').waitUntil('visible')
26+
27+
const search_input = browser.element.findByPlaceholderText('Search docs')
28+
search_input.sendKeys('frame')
29+
browser.element.find('.DocSearch-Dropdown-Container').assert.present()
30+
search_input.sendKeys([browser.Keys.ARROW_DOWN, browser.Keys.ENTER])
31+
32+
browser.element.find('h1').getText().assert.contains('.frameParent')
3133
})
3234

3335
it('Should copy the installation command on copy button click', function (browser) {
34-
const input_selector = '.DocSearch-Modal .DocSearch-Form input'
35-
browser
36-
.click(browser.element.findByText('Copy'))
37-
.click('#docsearch')
38-
.sendKeys(input_selector, [browser.Keys.COMMAND, 'v', browser.Keys.NULL])
39-
.assert.attributeMatches(input_selector, 'value', 'npm init nightwatch')
40-
;
36+
const is_mac = browser.capabilities.platformName.toLowerCase().includes('mac')
37+
browser.element.findByText('Copy').click()
38+
browser.element.find('#docsearch').click()
39+
const $inputEl = browser.element.find('.DocSearch-Modal .DocSearch-Form input')
40+
$inputEl.sendKeys([is_mac ? browser.Keys.COMMAND : browser.Keys.CONTROL, 'v'])
41+
$inputEl.getAttribute('value').assert.contains('npm init nightwatch')
4142
})
4243

4344
it('Should should change with client script', async function (browser) {
4445
const change_text = "{Client Side Execution}"
45-
await browser.executeScript(function (new_text) {
46+
browser.executeScript(function (new_text) {
4647
const $hero_cta = document.querySelector('.hero__action-button--get-started')
4748
$hero_cta.innerHTML = new_text
4849
$hero_cta.style.background = '#ff7f2b'
4950
document.querySelector('header .navigation-list').style.display = 'none'
5051
document.querySelector('header .navigation__logo').style.width = '900px'
5152
}, [change_text])
52-
await browser.pause(1000) // Pausing just to notice the changes
53-
await browser.click(browser.element.findByText(change_text))
53+
browser.pause(1000) // Pausing just to notice the changes
54+
browser.element.findByText(change_text).click()
5455
browser.assert.titleMatches('Getting Started')
5556
})
5657

5758
it('Should allow for substack subscription', function (browser) {
5859
const iframe_selector = '.footer__wrapper-inner-social-subscribe iframe'
5960
browser
60-
.execute(function (iframe_selector) {
61+
.executeScript(function (iframe_selector) {
6162
document.querySelector(iframe_selector).scrollIntoView()
6263
}, [iframe_selector])
63-
.setAttribute(iframe_selector, 'id', 'test-nightwatch-123')
64-
.frame('test-nightwatch-123')
65-
.sendKeys('input[type=email]', '[email protected]')
66-
.click('button[type=submit]')
67-
.ensure.alertIsPresent()
68-
.alerts.accept()
69-
.assert.elementPresent(browser.element.findByText('Sign out'))
70-
;
64+
browser.element.find(iframe_selector).setAttribute('id', 'iframe-test-nightwatch')
65+
browser.frame('iframe-test-nightwatch')
66+
67+
browser.element.find('input[type=email]').sendKeys('[email protected]')
68+
browser.element.find('button[type=submit]').click()
69+
70+
browser.ensure.alertIsPresent()
71+
browser.alerts.accept()
72+
browser.element.findByText('Sign out').assert.present()
7173
})
7274

7375
it('Should lead to the GitHub repo on clicking the Github icon', async function (browser) {
74-
await browser.click('ul.navigation-list.social li:nth-child(2) a')
76+
browser.element.find('ul.navigation-list.social li:nth-child(2) a').click()
7577
// wait until window handle for the new window is available
76-
await browser.waitUntil(async function () {
77-
return (await browser.window.getAllHandles()).length === 2
78+
browser.waitUntil(async function () {
79+
const windowHandles = await browser.window.getAllHandles()
80+
return windowHandles.length === 2
7881
})
7982

8083
const allWindows = await browser.window.getAllHandles()
81-
await browser.window.switchTo(allWindows[1])
84+
browser.window.switchTo(allWindows[1])
85+
86+
browser.assert.urlContains('github.com/nightwatchjs')
87+
})
8288

83-
await browser.assert.urlContains('github.com/nightwatchjs')
89+
it('sets and verifies the geolocation to Japan, USA and Denmark', function (browser) {
90+
const location_tests = [
91+
{
92+
location: { latitude: 35.689487, longitude: 139.691706, accuracy: 100 },
93+
// Tokyo Metropolitan Government Office, 都庁通り, Nishi - Shinjuku 2 - chome, Shinjuku, 163 - 8001, Japan
94+
test_text: 'Japan',
95+
},
96+
{
97+
location: { latitude: 40.730610, longitude: -73.935242, accuracy: 100 },
98+
// 38-20 Review Avenue, New York, NY 11101, United States of America
99+
test_text: 'New York',
100+
},
101+
{
102+
location: { latitude: 55.676098, longitude: 12.568337, accuracy: 100 },
103+
// unnamed road, 1550 København V, Denmark
104+
test_text: 'Denmark',
105+
}
106+
]
107+
108+
const waitTillLoad = async function () {
109+
const geo_dom_class = await browser.element.find('#geolocation_address')
110+
.getAttribute('class').value
111+
return !geo_dom_class.includes('text-muted')
112+
}
113+
114+
location_tests.forEach(obj => {
115+
browser.setGeolocation(obj.location).navigateTo('https://www.where-am-i.co/')
116+
browser.waitUntil(waitTillLoad)
117+
browser.element.find('#geolocation_address').getText().assert.contains(obj.test_text)
118+
})
84119
})
85120
})

0 commit comments

Comments
 (0)