我已经开始网络抓取。我想使用 selenium 和 python 喜欢 https://www.aparat.com/v/T8gqi?playlist=1869949 的视频,但我的代码中存在问题,无法找到正确的 xpath 来喜欢 svg 按钮。
driver = webdriver.Chrome(executable_path=ChromeDriverManager("122.0.6261.95").install())
aparat = driver.get("https://www.aparat.com/v/T8gqi?playlist=1869949")
sleep(20)
button = driver.find_element(By.XPATH,'//*[@id="primary"]/div[3]/div[2]/div[2]/div/div/div[1]/button')
ActionChains(driver).move_to_element(button).click(button).perform()