在量角器测试中设置chromedriver首选项 [英] Setting chromedriver preferences on protractor tests

查看:86
本文介绍了在量角器测试中设置chromedriver首选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

试图在我的测试中找到下载文件的解决方案,我发现这个问题导致我在chrome文件夹中的首选项文件。

Trying to find a solution to download files during my tests, i found this question that lead me to preferences file in chrome folder.

显然,没有关于关闭下载提示或/和设置默认文件夹的信息。有谁知道我怎么做?

Apparently, there are no info about shutting the prompt for download or/and setting a default folder. Does anyone knows how i can do this?

这是我试过的:

capabilities: {
        'browserName': 'chrome',
        'chromeOptions': {

            prefs: {
                'downloads': {
                    'prompt_for_download': false,
                    'default_directory': '/downloads/'
                }
            }
        }
    },


推荐答案

你正确地做了,除非你需要:

You are doing it correctly, except you need to:


  • 指定下载目录的绝对路径

  • 添加 directory_upgrade 选项

  • specify an absolute path to the "downloads" directory
  • add directory_upgrade option

示例:

capabilities: {
        'browserName': 'chrome',
        'chromeOptions': {

            prefs: {
                download: {
                    'prompt_for_download': false,
                    'directory_upgrade': true,
                    'default_directory': '/absolute/path/here'
                }
            }
        }
    },

参见:无法阻止量角器显示文件下载提示

这篇关于在量角器测试中设置chromedriver首选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆