Run my Angular app scenarios with chrome the scenarios are run successfully, but the halt is occurred at firefox new version 35.0b6. Any one please help me thanks in advance
Selenium 2.44 is not compatible with Firefox 35. Related issues:
The easiest option right now would be to downgrade firefox to the latest stable version (currently 34.0.5).
UPDATE: selenium
2.45 with firefox compatibility issues fixed was released today (Feb 28 2015). At the moment, to have protractor
work with selenium
2.45 - install it from the protractor github master branch directly:
$ npm install angular/protractor
or
$ npm install git+https://git@github.com/angular/protractor.git
FYI, I've reproduced the same connection problems with protractor 1.5 and the "angularjs.org" protractor tutorial test case:
describe('angularjs homepage todo list', function() {
it('should add a todo', function() {
browser.get('http://www.angularjs.org');
element(by.model('todoText')).sendKeys('write a protractor test');
element(by.css('[value="add"]')).click();
var todoList = element.all(by.repeater('todo in todos'));
expect(todoList.count()).toEqual(3);
expect(todoList.get(2).getText()).toEqual('write a protractor test');
});
});