|
1 | 1 | 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('/') |
5 | 5 | })
|
6 | 6 | afterEach(browser => browser.end())
|
7 | 7 |
|
8 | 8 | 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') |
10 | 10 | })
|
11 | 11 |
|
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') |
14 | 16 | 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') |
18 | 17 | browser.assert.urlContains('nightwatchjs.org/guide/quickstarts')
|
| 18 | + browser.element.findByPlaceholderText('Filter by title') |
| 19 | + .getAttribute('autocomplete').assert.equals('off') |
| 20 | + ; |
19 | 21 | })
|
20 | 22 |
|
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') |
31 | 33 | })
|
32 | 34 |
|
33 | 35 | 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') |
41 | 42 | })
|
42 | 43 |
|
43 | 44 | it('Should should change with client script', async function (browser) {
|
44 | 45 | const change_text = "{Client Side Execution}"
|
45 |
| - await browser.executeScript(function (new_text) { |
| 46 | + browser.executeScript(function (new_text) { |
46 | 47 | const $hero_cta = document.querySelector('.hero__action-button--get-started')
|
47 | 48 | $hero_cta.innerHTML = new_text
|
48 | 49 | $hero_cta.style.background = '#ff7f2b'
|
49 | 50 | document.querySelector('header .navigation-list').style.display = 'none'
|
50 | 51 | document.querySelector('header .navigation__logo').style.width = '900px'
|
51 | 52 | }, [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() |
54 | 55 | browser.assert.titleMatches('Getting Started')
|
55 | 56 | })
|
56 | 57 |
|
57 | 58 | it('Should allow for substack subscription', function (browser) {
|
58 | 59 | const iframe_selector = '.footer__wrapper-inner-social-subscribe iframe'
|
59 | 60 | browser
|
60 |
| - .execute(function (iframe_selector) { |
| 61 | + .executeScript(function (iframe_selector) { |
61 | 62 | document.querySelector(iframe_selector).scrollIntoView()
|
62 | 63 | }, [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() |
71 | 73 | })
|
72 | 74 |
|
73 | 75 | 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() |
75 | 77 | // 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 |
78 | 81 | })
|
79 | 82 |
|
80 | 83 | 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 | + }) |
82 | 88 |
|
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 | + }) |
84 | 119 | })
|
85 | 120 | })
|
0 commit comments