Hi I am trying to scrape user data from a website. I need User ID which are available in the tag names itself.I am trying to scrape the UID using python selenium and beautiful s
you can use .get method and scrape the tag names easily,
in your question;
soup.get('id')
of course, if there are many id tags exist, you need to use more specific tags with find or find_all method before using the .get