I have an app running on http://localhost:6543 - it's a Pyramid app.
- This app serves the AngularJS app at /
- This app uses socket.io itself
The question is: is it possible to test that application using those tools ?
I have this in my scenario.js file:
beforeEach(function() {
browser().navigateTo('http://localhost:6543/');
});
but the moment I launch testacular (with run or start), I get this error message:
Chrome 23.0 registration: should delete all cookies when user clicks on "remove all" button FAILED
browser navigate to 'http://localhost:6543/'
/home/abourget/myapp/jstests/scenarios/registration_scenario.js:9:5: Sandbox Error: Application document not accessible.
so I understand the browser doesn't give access to the iframe's document, because it'd be some Cross-Origin violation.
What I tried:
- Proxying to my app using the Testacular web server (with the
proxiesoption), but/would conflict with Testacular's own serving of its framework. Also, both apps would eventually try to use/socket.ioand that would conflict also. - Doing the reverse (tweaking my app to proxy to Testacular's server), but then, we'd get the same issues with
/socket.io.
Thanks for these great tools, btw!