I am using protractor 3.0 with firefox 44 and chrome. My test passed when I use chrome, but some of my test (mostly the test involving select field) failed with firefox. I used this to retrieve the proper option
mySelect.element(by.cssContainingText('option', "Terminology")).click();
(I tried using this function and I had same result )
mySelect.all(by.css("option")).each(function(option){
option.getText().then(function(text){
if(text=="Terminology"){
option.click();
}
})
});
Any idea about It ?