无法使用量角器下载文件,当我单击下载链接时,它单击了它,但是在chrome浏览器中未下载任何内容

时间:2019-03-28 12:09:38

标签: jasmine protractor

我具有多种功能,当我单击链接进行下载时,它会下载一些不同格式的文件,例如pdf,xls等。我试图下载的文件不是在chrome浏览器中发生的,而是单击链接,但未下载任何内容

我的配置文件

capabilities :{
  browserName: 'chrome',
  chromeOptions: {
    args: ['--no-sandbox', '--test-type=browser'],
    prefs: {
      download: {
        always_open_pdf_externally: true,
        prompt_for_download: false,
        directory_upgrade: true,
        default_directory: 'downloads'
      }
    }
  }
}

html代码-

enter image description here

我的测试场景-

enter image description here

0 个答案:

没有答案