Please refer to attached print, I want to access - value attribute under role = progress.
How can i get the Xpath of it ?
Please refer to attached print, I want to access - value attribute under role = progress.
How can i get the Xpath of it ?
The xpath you need is:
//paper-progress[@role='progressbar']
Hit F12 in chrome, go to Console tab and typ:
$x("//paper-progress[@role='progressbar']")
Do this once the page is loaded properly and see if you get an element back.