javascript - What is the benefit of using protractor for applications non angular? -
i'm implementing automated tests , know benefits of automating non-angular applications protractor.
what advantages comparing use of webdriverjs?
protractor provides convenient , well-designed api , abstraction layer on webdriverjs javascript selenium bindings. actively developed , maintained google developers.
aside browser, by, element, element.all, $ , $$ global syntactic sugar , multiple unique locators , easy way add custom locators, there set of built-in expected conditions used browser.wait() , sync non-angular apps.
also, don't forget convenient way configure protractor tests.
also, there several built-in plugins extend protractor's built-in features. there accessibility, timeline, nghint , console plugins implemented.
in other words, protractor you'll pure vanilla webdriver provides , more on top.
also, see:
Comments
Post a Comment