我使用xvfb打开显示器并使用chromedriver并行运行selenium测试。所以你可以一次运行多个chromedrivers。如何添加视频录制以便我可以单独录制每个会话?是否有插件我可以用来为每个selenium会话添加视频录制?
答案 0 :(得分:0)
您可以使用ffmpeg
或avconv
(ffmpeg的分支)。
avconv \
-f x11grab \ # input for grabbing from X11
-r 15 \ # Frame rate
-s 400x300 \ # Size and width of area to capture
-i :0.0 \ # The display number you created with xvfb
-vcodec libx264 \ # the video codec
/tmp/output-file.mp4