2016-09-14 15:28:45 -04:00
|
|
|
/*
|
|
|
|
* Checks that the links in the navbar on the homepage have the right URLs to redirect to
|
|
|
|
*
|
|
|
|
* Test cases: https://github.com/LLK/scratch-www/wiki/Most-Important-Workflows#Create_should_take_you_to_the_editor
|
|
|
|
*/
|
|
|
|
|
2016-09-15 13:22:53 -04:00
|
|
|
var tap=require('tap');
|
|
|
|
var seleniumWebdriver = require('selenium-webdriver');
|
2016-09-14 15:28:45 -04:00
|
|
|
|
|
|
|
//chrome driver
|
|
|
|
var driver = new seleniumWebdriver.Builder().withCapabilities(seleniumWebdriver.Capabilities.chrome()).build();
|
|
|
|
//open scratch.ly in a new instance of the browser
|
2016-09-15 10:36:47 -04:00
|
|
|
driver.get('https://scratch.ly');
|
2016-09-14 15:28:45 -04:00
|
|
|
|
|
|
|
//find the create link within the navbar
|
|
|
|
//the create link depends on whether the user is signed in or not (tips window opens)
|
|
|
|
tap.test('checkCreateLinkWhenSignedOut', function (t) {
|
2016-09-19 13:02:16 -04:00
|
|
|
var xPathLink = '//li[contains(@class, "link") and contains(@class, "create")]/a';
|
2016-09-15 13:22:53 -04:00
|
|
|
var createLinkSignedOut = driver.findElement(seleniumWebdriver.By.xpath(xPathLink));
|
2016-09-19 13:02:16 -04:00
|
|
|
createLinkSignedOut.getAttribute('href').then( function (url) {
|
2016-09-19 13:11:24 -04:00
|
|
|
//expected value of the href
|
|
|
|
var expectedHref = '/projects/editor/?tip_bar=home';
|
|
|
|
//the create href should match `/projects/editor/?tip_bar=home`
|
2016-09-19 13:02:16 -04:00
|
|
|
//the create href should be at the end of the URL
|
2016-09-21 10:41:24 -04:00
|
|
|
t.equal(url.substr(-expectedHref.length), expectedHref);
|
2016-09-15 10:36:47 -04:00
|
|
|
t.end();
|
|
|
|
});
|
2016-09-14 15:28:45 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// close the instance of the browser
|
|
|
|
driver.quit();
|
|
|
|
|