pycharm,运行代码提示报错:文件已经存在怎么处理
# -*- coding: utf-8 -*-__author__ = "mischeng"
from time import sleep
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
if __name__ == "__main__":
driver = webdriver.Chrome()
driver.get("http://www.python.org")提示这个:Cannot create file 'C:\Users\Administrator\PycharmProjects\untitled2\DD.py'. File already exists.
删除或更改文件名,不知道您的具体需要 你不是完整的代码,对吧?为什么要创建文件来自动打开网页?我不明白
使用selenium来自动操作浏览器是下载相应的驱动程序,chromedriver下面呢? 我以前从未遇到过这个问题。selenium使用的所有配置都安装好了吗 您创建的脚本的原始格式可能不是py文件,这将导致错误提示路径中的名称文件重复,从而导致解释器无法在运行之前编译。建议使用pychar创建一个新的py文件,然后粘贴代码。 打开的方式是错误的。你不能直接打开python文件。打开python文件所在的文件夹,然后打开python文件,可以打开它
页:
[1]