I want to retrieve the value for our version which is stored in HTML DOM.
Using node.js and protractor. I don't know how to go about it.
Please provide your valuable knowledge for the same :)
I want the value 2016.R08.1.RC1
The simplest way is to select html
by selector and get manifest
property:
element(by.css('html')).getAttribute('manifest');
Then you should receive the full value of manifest
property.