java获取音频驱动程序_java – 通过Selenium Chromedriver自动授予Chrome 48中视频和音频的访问权限...

在尝试通过Chromedriver自动控制Chrome浏览器并授予视频和音频访问权限时遇到问题。已尝试设置Chrome偏好设置,但导致浏览器无法启动或仍提示用户授权。寻求解决自动授予权限的方法。
摘要由CSDN通过智能技术生成

我想通过Chromedriver功能自动授予Chrome中视频和音频的访问权限.

根据this(相当古老)的答案我尝试了以下内容:

DesiredCapabilities capabilities = DesiredCapabilities.chrome();

ChromeOptions options = new ChromeOptions();

Map prefs = new HashMap<>();

// with this chrome still asks for permission

prefs.put("profile.managed_default_content_settings.media_stream", 1);

prefs.put("profile.managed_default_content_settings.media_stream_camera", 1);

prefs.put("profile.managed_default_content_settings.media_stream_mic", 1);

// and this prevents chrome from starting

prefs.put("profile.content_settings.exceptions.media_stream_mic.https://*,*.setting", 1);

prefs.put("profile.content_settings.exceptions.media_stream_mic.https://*,*.last_used", 1);

prefs.put("profile.content_settings.exceptions.media_stream_camera.https://*,*.setting", 1);

prefs.put("profile.content_settings.exceptions.media_stream_camera.https://*,*.last_used", 1);

// and this prevents chrome from starting as well

prefs.put("profile.content_settings.pattern_pairs.https://*,*.media_stream.video", "Allow");

prefs.put("profile.content_settings.pattern_pairs.https://*,*.media_stream.audio", "Allow");

options.setExperimentalOption("prefs", prefs);

capabilities.setCapability(ChromeOptions.CAPABILITY, options);

有关如何正确授予权限的任何想法?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值