进程以python中的退出代码1错误完成[重复]
Posted
技术标签:
【中文标题】进程以python中的退出代码1错误完成[重复]【英文标题】:Process finished with exit code 1 error in python [duplicate] 【发布时间】:2017-09-24 21:50:48 【问题描述】:我正在尝试在预设时间自动执行 whatsapp 消息。我使用pycharm ide。
查看示例代码,
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
import time
# Replace below path with the absolute path
# to chromedriver in your computer
driver = webdriver.Chrome('/home/saket/Downloads/chromedriver')
driver.get("https://web.whatsapp.com/")
wait = WebDriverWait(driver, 600)
# Replace 'Friend's Name' with the name of your friend
# or the name of a group
target = '"Friend\'s Name"'
# Replace the below string with your own message
string = "Message sent using Python!!!"
x_arg = '//span[contains(@title,' + target + ')]'
group_title = wait.until(EC.presence_of_element_located((
By.XPATH, x_arg)))
group_title.click()
inp_xpath = '//div[@class="input"][@dir="auto"][@data-tab="1"]'
input_box = wait.until(EC.presence_of_element_located((
By.XPATH, inp_xpath)))
for i in range(100):
input_box.send_keys(string + Keys.ENTER)
time.sleep(1)
我从here获取此代码
我将电脑中的chromedriver路径替换为C:\Users\public\chromedriver.exe,但点击运行按钮后显示路径错误。
这是屏幕截图。
chrome driver location error on PC
你能告诉我为什么会发生这种情况,尽管位置是正确的吗?
【问题讨论】:
请阅读How to Ask 以了解为什么发布代码/错误消息的屏幕截图是不好的。还要发布产生错误的实际代码——让别人尽可能容易地帮助你。现在,愿意提供帮助的人必须复制您的代码,编辑您的更改,查看错误的屏幕截图,再次手动输入更改才能重现错误。 此外,在 SO 上快速搜索此处的错误会给您提供多个具有类似问题的问题,例如***.com/questions/18276283/… 【参考方案1】:您的错误消息屏幕截图(不要那样做!发布文本!)显示的源代码与您发布的源代码不同。
你必须在你的路径中转义\
,所以C:\Users
应该是C:\\Users
。
【讨论】:
当然,Christian 我是堆栈溢出的新手,谢谢。以上是关于进程以python中的退出代码1错误完成[重复]的主要内容,如果未能解决你的问题,请参考以下文章
如何修复错误“进程以退出代码-1073741819(0xC0000005)完成”
循环向量退出并出现错误进程以退出代码 -1073741819 完成
进程以退出代码 -1073741819 (0xC0000005) Python Tkinter GUI Canvas 更新完成