2018-10-04 00:39:39 +00:00
|
|
|
/* global browser */
|
2018-10-02 20:15:02 +00:00
|
|
|
const assert = require('assert');
|
2018-10-04 00:39:39 +00:00
|
|
|
const HomePage = require('./pages/desktop/home_page');
|
2018-10-02 20:15:02 +00:00
|
|
|
|
2018-10-04 00:39:39 +00:00
|
|
|
describe('Firefox Send homepage', function() {
|
2018-10-31 18:31:17 +00:00
|
|
|
const homePage = new HomePage();
|
2018-10-02 20:15:02 +00:00
|
|
|
const baseUrl = browser.options['baseUrl'];
|
2018-10-31 18:31:17 +00:00
|
|
|
const footerLinks = [
|
2018-11-02 18:57:50 +00:00
|
|
|
'mozilla',
|
2018-10-02 20:15:02 +00:00
|
|
|
'legal',
|
|
|
|
'legal',
|
|
|
|
'cookies',
|
2018-10-31 18:31:17 +00:00
|
|
|
'report-infringement',
|
|
|
|
'github',
|
|
|
|
'twitter'
|
2018-10-02 20:15:02 +00:00
|
|
|
];
|
|
|
|
|
2018-10-04 00:39:39 +00:00
|
|
|
beforeEach(function() {
|
2018-10-31 18:31:17 +00:00
|
|
|
homePage.open();
|
2018-10-02 20:15:02 +00:00
|
|
|
});
|
|
|
|
|
2018-10-04 00:39:39 +00:00
|
|
|
it('should have the right title', function() {
|
|
|
|
assert.equal(browser.getTitle(), 'Firefox Send');
|
2018-10-02 20:15:02 +00:00
|
|
|
});
|
|
|
|
|
2018-10-31 18:31:17 +00:00
|
|
|
footerLinks.forEach((link, i) => {
|
|
|
|
it(`should navigate to the correct page: ${link}`, function() {
|
2018-10-02 20:15:02 +00:00
|
|
|
// Click links on bottom of page
|
2018-10-31 18:31:17 +00:00
|
|
|
const els = browser.elements(homePage.footerLinks);
|
2018-10-02 20:15:02 +00:00
|
|
|
browser.elementIdClick(els.value[i].ELEMENT);
|
|
|
|
// Wait for page to load
|
|
|
|
browser.waitUntil(() => {
|
2018-10-04 00:39:39 +00:00
|
|
|
const url = browser.getUrl();
|
2018-10-02 20:15:02 +00:00
|
|
|
return url !== baseUrl;
|
|
|
|
});
|
|
|
|
assert.ok(browser.getUrl().includes(link));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|