How scrape meta tags

I need to scrape keywords from sites (meta type="keywords" content="my target")...Is it possible?

Use element attribute selector. As element set meta[type="keywords"] and as attribute set content.

Hello i tried it, its not working. This is how my syntax looks like.

<meta name="keywords" content="bookname,authorname" />

I need to get values like book name, author name

can some one help?

meta[name="keywords"]

Just to clarify the process for us noobs, here's what it should look like with the important parts highlighted in yellow.
Keywords%20Selector

4 Likes

Thank for the info on meta.
It save me so much time.