What is the added value of Protractor over angular-scenario ? I tried to find out why was angular-scenario on the deprecation path, I have read this post, and watched this video , but I am still unsatisfied by the fact there are no obvious advantage to use Protractor.
Why was Protractor chosen over angular-scenario?
945 Views Asked by bdavidxyz At
1
There are 1 best solutions below
Related Questions in ANGULARJS
- Angular Show All When No Filter Is Supplied
- Using pagination on a table in AngularJS
- State with different subviews
- Getting and passing MVC Model data to AngularJS controller
- Implementing prerender.io middleware in sails.js
- Token based authorization in nodejs/ExpressJs and Angular(Single Page Application)
- AngularJS, Google App Engine and URLrewrite
- send data from table to another page into forms
- How to write tests for classes with inheritance
- angularJS sending OPTIONS instead of POST
- Receiving POST from external application in AngularJS
- Metaprogramming AngularJS Filters
- Reload List after Closing Modal
- Why is my angularjs site not completely crawlable?
- Why is separation of JavaScript and HTML a good practice?
Related Questions in PROTRACTOR
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Getting the button text in Protractor
- MSSQL - Nodejs - Undefined is not a function issue
- Load additional CONFIG file with values
- Protractor, login to asp,net MVC login page, wait for default page then , redirect to angular page and do tests....how?
- Phantomjs fails when Protractor is run with selenium hub
- Protractor Test Result variations
- How to use Jasmine and CucumberJS with Protractor
- Protractor : Failed: Object has no method 'getText'
- Protractor - How to get first or last CHILD value
- Protractor : Refreshing browser instance between testsuites
- Protractor e2e tests with MEANJS navigation
- Protractor: Multiple browser instance tests fail where Single Instance tests pass
- cucumber-js and Chai how to expect if element with given selector exist in DOM
- How to use isElementPresent/isPresent inside ng-repeat in protractor?
Related Questions in ANGULAR-SCENARIO
- $document.injector is not a function in Karma E2E Tests
- Scope variables undefined when testing controller with Karma and Jasmine with ng-scenario as framework
- Trouble with Karma + AngularJS Scenario Test Runner and a form
- Why was Protractor chosen over angular-scenario?
- Including angular-scenario.js breaks my Rails Jasmine tests, as in they don't run
- Angular Scenario Runner vs Protractor
- Update View when Scope changes Angular js
- Testacular does not run e2e test
- Angularjs e2e testing with scenario test runner - ignore alert()
- Angularjs e2e testing past/future comparisons
- How to assert the page title using AngularJS Scenario
- Karma, the test doesn't run
- Angular Karma e2e with Grunt
- Subsequent variable declarations must have the same type. Variable 'angular' must be of type 'IAngularStatic', but here has type 'IAngularStatic'
- angular-scenario e2e testing - waiting for key events to complete before proceeding
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In Ruby On Rails land, capybara is one of the major integration test tools, Watir is another. Both utilize the WebDriver api to interact with the browsers. This is the standard way to interact with the browser/webpage for E2E testing.
Karma/ngScenarioE2E utilizes an iframe and interacts with browsers with karma plugins. While effective, its far from standard.
This to me in the main benefit of using protractor, the low-level access to the browser. Whether or not that's enough reason for them to switch, is really up to the google team, and it seems like they've made up their mind on this.