我试图使用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获取默认适配器失败。
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 () {
}
}
答案 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'])