Am I correct in saying that Protractor must have the Protractor/Selenium Webdriver installed on the machine where the tests are being run but Angular Scenario runner executes within the browser?
I would essentially love to be able to run tests/scenarios remotely to give potential interviewers an insight into the behaviour/nature of a site I am developing.
I have used iMacros in the past, however, the tests weren't strictly portable between Firefox and Chrome?
Is my assumption about the difference between Protractor and Angular Scenario runner correct?
Thanks, Mark.
Protractor wraps the
WebDriverJS- javascript selenium bindings, and adds quite a lot on top of it, specifically to testing Angular sites but not necessarily. When you run Protractor, you need your application to be served and accessible, you may need to start the selenium server or use the direct connect feature available for Firefox and Chrome, see also:Angular Scenario runner on the other hand is something you should not be considering - it is currently deprecated and is in the maintenance mode.