You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.
Hi, really struggling to extrach one bit of data from this web page.
When inspecting the data element and copy the xPath into the console I get an emprt response when clearly the element has a value of 939.
Any help to explain where I'm going wrong would be most appreciated.
I'm using Puppeteer-extra and stealth
Thanks Chris
The text was updated successfully, but these errors were encountered:
let value=page.$$("classname whose innertext value you want to extract");
suppose this class has length 5 and you want to extract "939" which has class at 3 index so you can do this
let innertext=await (await (value[2].getproperty("innerText")).jsonvalue();
hope this will help you
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, really struggling to extrach one bit of data from this web page.
When inspecting the data element and copy the xPath into the console I get an emprt response when clearly the element has a value of 939.
Any help to explain where I'm going wrong would be most appreciated.
I'm using Puppeteer-extra and stealth
Thanks Chris
The text was updated successfully, but these errors were encountered: