-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(test): Added a new e2e test for layers-simple-example.html
- Loading branch information
1 parent
057fe2d
commit 85ac00f
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
'use strict'; | ||
|
||
describe('Loading layers-simple-example.html', function() { | ||
|
||
var ptor, driver; | ||
beforeEach(function() { | ||
ptor = protractor.getInstance(); | ||
browser.get('/examples/layers-simple-example.html'); | ||
driver = ptor.driver; | ||
}); | ||
|
||
it('should change the layer tiles if clicked on the leaflet control switch layer', function() { | ||
ptor.wait(function() { | ||
return ptor.isElementPresent(by.xpath('//img[contains(@src, "http://c.tile.openstreetmap.org/")]')); | ||
}); | ||
|
||
expect(ptor.isElementPresent(by.xpath('//img[contains(@src, "http://c.tile.openstreetmap.org/6/53/27.png")]'))).toBe(true); | ||
ptor.actions().mouseMove(element(by.xpath('//a[contains(@class, "leaflet-control-layers-toggle")][1]')).find()).perform(); | ||
|
||
ptor.findElements(by.css("input.leaflet-control-layers-selector")).then(function(inputs) { | ||
var input = inputs[1]; | ||
input.click().then(function() { | ||
ptor.wait(function() { | ||
return ptor.isElementPresent(by.xpath('//img[contains(@src, "http://b.tile.cloudmade.com/")]')).then(function(elementLoaded) { | ||
return elementLoaded; | ||
}); | ||
}); | ||
expect(ptor.isElementPresent(by.xpath('//img[contains(@src, "http://b.tile.cloudmade.com/007b9471b4c74da4a6ec7ff43552b16f/7/256/6/53/26.png")]'))).toBe(true); | ||
}); | ||
}); | ||
}); | ||
}); |