作爲使用Python和Selenium進行測試的一部分,我打算使用硒打開一個youtube鏈接,並希望單擊「AirPlay」按鈕將其發送到Apple TV。 最初我遇到了元素被隱藏的問題,但是使用了ActionChains。該腳本執行,但我看不到點擊正在播放的視頻上,我可以看到AppleTv名稱顯示。無法使用selenium webdriver單擊Safari(mac)上隱藏的AirPlay按鈕元素
下面是代碼:
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver import ActionChains
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
import os , sys
server_url = "http://10.0.10.4:4444/wd/hub"
capabilities = DesiredCapabilities.SAFARI
driver = webdriver.Remote(desired_capabilities=capabilities,
command_executor=server_url)
driver.get("https://www.youtube.com/watch?v=_YhrCp9m14k")
#air_play = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.XPATH, '//*[@id="move_player"]/div[28]/div[2]/div[2]/button[6]')))
air_play = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.CLASS_NAME, 'ytp-airplay-button')))
#air_play = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.XPATH, '//*[@id="text"]')))
#air_play = driver.find_element_by_css_selector('button.ytp-ariplay-button')
hover = ActionChains(driver).move_to_element(air_play)
hover.perform()
hover1 = ActionChains(driver).click_and_hold(air_play).perform()
html元素如下:
<button class="ytp-airplay-button ytp-button" title="AirPlay" style=""><svg
height="100%" version="1.1" viewBox="0 0 36 36" width="100%"><use
class="ytp-svg-shadow" NS1:href="#ytp-id-27"></use><path class="ytp-svg-
fill" d="M12,28 L24,28 L18,22 L12,28 Z M27,9 L9,9 C7.9,9 7,9.9 7,11 L7,23
C7,24.1 7.9,25 9,25 L13,25 L13,23 L9,23 L9,11 L27,11 L27,23 L23,23 L23,25
L27,25 C28.1,25 29,24.1 29,23 L29,11 C29,9.9 28.1,9 27,9 L27,9 Z" id="ytp-
id-27"></path></svg></ button>
的XPATH如下:
//*[@id="movie_player"]/div[28]/div[2]/div[2]/button[6]
CSS選擇如下:
#movie_player > div.ytp-chrome-bottom > div.ytp-chrome-controls > div.ytp-
right- controls > button.ytp-airplay-button.ytp-button
有人可以幫忙,爲什麼按鈕不被點擊並顯示可用的Airplay選項?
我看不到Airplay的選項。我假設我錯過了一些觸發它顯示的組件。你能編輯你的問題併發布相關的HTML嗎? – JeffC
@ JeffC。我希望我已經提供了所需的信息。也許我需要提一下,這個元素可以在Mac電腦上的Safari瀏覽器中看到。我沒有在Windows安裝的Safari瀏覽器上嘗試過。 –