如何检查主页中的视频是否自动播放和无限循环?我需要 Open test 中的代码,可以是带有 java、javascript 或 python 的 selenium
问问题
48 次
1 回答
0
这篇文章需要更多信息,但如果我假设你在 html 中谈论 a <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.
于 2020-06-07T05:10:22.273 回答