无法为网页抓取音频

Unable to scrape audio for webpage

我正在尝试从 'https://www.akrapovic.com/en/car/product/16722/Ferrari/488-GTB-488-Spider/Slip-On-Line-Titanium?brandId=20&modelId=785&yearId=5447' 中抓取音频(在体验声音的情况下)。我写了下面的代码,但它给我错误。

driver.get('https://www.akrapovic.com/en/car/product/16722/Ferrari/488-GTB-488-Spider/Slip-On-Line-Titanium?brandId=20&modelId=785&yearId=5447')
audio_link = driver.find_element(By.XPATH,'//*[@class="container-xl"]')
print(audio_link.find_element(By.CSS_SELECTOR,'audio'))     

希望找到更好的方法来抓取它。

您可以简单地使用

driver.find_element(By.XPATH,'//audio')