gulp-protractor-qa
gulp-protractor-qa copied to clipboard
Unable to track the HTML page changes
@ramonvictor At fist thanks a ton for this awesome plugin which helps for qa guys. I tried you plugin and it works well when there is are changes happened in spec.js files. But for html page it is not recognizing the changes. Here are the steps -
1 - I just saved my app angular page as html doc 2 - Placed in my framework and config the file gulpfile.js 3- When I modify the element information in html file your plugin is not identifying them 4- If I remove that html file completely then it should the red marks for the locators in spec.js file
Any advise ?
I am getting the same thing. Also, the system isnt recognizing the $$ selector option for protractor, for example if I have:
elementName: $$('[name="elementName"]')
it is not checking those, only if it has it formatted like this:
elementName: browser.driver.findElement(by.css('[name="elementName"]'))
But same as above, if I change the element on the html page, the file watcher is not notifying me.