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
All css selectors are supported, they have the same syntax across all browsers.
You can use Chrome DevTools to inspect an element. Look for id, class attributes or combinations of the two to create a css selector uniquely identifying the html element you want to extract content from.
You can test the selector in the DevTools Console tab by typing / executing something like document.querySelectorAll("body") (replace body with your own selector). The console will return all html elements matching the given css selector.
How to create a CSS selector? I didn't find anything in the docs about this? Which selector in Devtools? Any selector Chrome selector?
The text was updated successfully, but these errors were encountered: