当我部署程序时,我收到此错误:
Traceback (most recent call last):
File "main.py", line 27, in <module>
wbe = webdriver.Chrome("directory/chromedriver",options=chromeOptions)
TypeError: __init__() got multiple values for argument 'options'
Traceback (most recent call last):
File "main.py", line 27, in <module>
wbe = webdriver.Chrome("directory/chromedriver",options=chromeOptions)
TypeError: __init__() got multiple values for argument 'options'
我尝试使用此代码:
chromeOptions = webdriver.ChromeOptions()
chromeOptions.add_argument("ignore-certificate-errors")
chromeOptions.add_argument('--headless=chrome')
wbe = webdriver.Chrome("directory/chromedriver",options=chromeOptions)
我认为我们需要更多信息才能提供任何知情的反馈。我建议使用 help.railway.app。
更好地使用铁路内失败的构建日志旁边出现的铁路帮助站按钮。请参阅这里的小视频:
https://railway.app/changelog/2024-03-22-eject-services-templates#contextual-help-requests
这会将您构建的所有上下文发送到 Railway 的帮助站,其他社区成员可能能够帮助您调试。