bdavidxyz
bdavidxyz

Reputation: 2560

Why was Protractor chosen over angular-scenario?

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.

Upvotes: 1

Views: 903

Answers (1)

jonh
jonh

Reputation: 242

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.

Upvotes: 1

Related Questions