使用Selenium Python下载文件时出现“失败-下载错误”

时间:2020-07-17 05:56:54

标签: python selenium selenium-webdriver selenium-chromedriver

我试图使用Selenium下载文件,但出现“失败-下载错误”。

我试图禁用安全浏览,但没有成功。

我也附上了屏幕截图和代码。

日志:

DevTools在ws://127.0.0.1:53738 / devtools / browser / d75dfd5b-1e3e-45c5-8edd-adf77dd9adb1上监听 [2572:2724:0717 / 104626.877:ERROR:device_event_log_impl.cc(208)] [10:46:26.877]蓝牙:bluetooth_adapter_winrt.cc:1074获取默认适配器失败。

Error's screenshot

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Diana : MonoBehaviour {

    public GameObject diana;
    public AnimationClip Score;

    private Animation myAnimation;

    /* IEnumerator Wait()
    {

        myAnimation = GetComponent<Animation>();
        myAnimation.Play("DianaScore");
        yield return new WaitForSeconds(3);

    } */

    void OnTriggerEnter(Collider other)
    {
        Debug.Log("Funcó wacho");
        myAnimation = GetComponent<Animation>();
        myAnimation.Play("DianaScore");
       // StartCoroutine(Wait());
    }
    void Update () {

   }
}

2 个答案:

答案 0 :(得分:1)

当我从路径中删除“ r”时,它起作用了

"download.default_directory": r"C:\\Users\\Awais\\projects\\selenium\\web_email_extractor\\csv",

收件人:

"download.default_directory": "C:\\Users\\Awais\\projects\\selenium\\web_email_extractor\\csv",

答案 1 :(得分:0)

在Windows上,应该可以通过以下方式禁止显示此消息:

options = webdriver.ChromeOptions()

options.add_experimental_option('excludeSwitches', ['enable-logging'])