Is it possible to integrate Protractor into a simple browser automation tool by referencing it and add some webdriver & browser initialization code?
The cli interface of the protractor conf.js
is quite well documented but it depends on jasmine or other testing frameworks.
Are there any examples out there which could save me some time? Something like the following would be great:
//require protractor
var client = new Protractor(settings etc.);
client.browser.start();
client.driver.element.by....click() ;
I do not want to use Protractors interactive shell or its on top TCP socket for my application.