我尝试使用以下代码:
elem = driver.find_element_by_class_name("ytp-next-button ytp-button")
elem.click()
但是视频上没有鼠标,就没有工具栏。我能做什么?
您无法单击该按钮不是因为您需要将光标放在它上面,而是因为错误的定位器:使用find_element_by_class_name()
名称不应包含空格...但是在你的情况下有一个空间。所以你应该改用find_element_by_xpath()
。尝试以下代码:
elem = driver.find_element_by_xpath('//*[@class="ytp-next-button ytp-button"]')
elem.click()