简体   繁体   中英

Python Selenium WebDriver. How to get the href link?

I am trying to get the href link using Python and Selenium WebDriver but the statement is returning an empty list.

HTML

<a class="_32mo" href="https://www.facebook.com/XXXXXXXXXXXX?ref=br_rs"><span>Ma....</span></a>

Python code

urls = browser.find_elements_by_css_selector('._32mo [href]')

Thank you

Try this:

[el.get_attribute("href") for el in browser.find_elements_by_css_selector("._32mo")]

ref

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM