如何检查主页面的视频是否自动播放和死循环?我需要的代码,在开放测试,可以是与java,javascript或python的selenium
发布于 2020-06-07 05:10:22
这篇文章需要更多的信息,但如果我假设你在谈论html中的一个<video>
,你可以这样做。(此示例使用Python)
# autoplay attribute doesn't have a value attached to it
# so you'll have to find it with a css selector
try:
# If it finds the element it is autoplay.
video = driver.find_element_by_css_selector('video[autoplay]')
except:
pass # Video is not autoplay.
https://stackoverflow.com/questions/62238381
复制