Exception in thread Thread-5: Traceback (most recent call last): File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\threading.py", line 932, in _bootstrap_inner self.run() File "ICP.py", line 197, in run self.workType1() File "ICP.py", line 53, in workType1 dt = self.openBrowserAndLoadPath() File "ICP.py", line 181, in openBrowserAndLoadPath dt.OpenBrowser(index, proxy) File "C:\Users\11834\Desktop\icpTool\Ahao_ToolsForThis.py", line 328, in OpenBrowser self.browser = webdriver.Chrome(options=chrome_options) File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 76, in __init__ RemoteWebDriver.__init__( File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 157, in __init__ self.start_session(capabilities, browser_profile) File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 252, in start_session response = self.execute(Command.NEW_SESSION, parameters) File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute self.error_handler.check_response(response) File "C:\Users\11834\miniconda3\envs\cv2_cp38\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.SessionNotCreatedException: Message: session not created from no such execution context: uniqueContextId not found (Session info: chrome=114.0.5735.110)
时间: 2023-08-09 17:05:49 浏览: 750
这是一个 Python 的异常信息,看起来是在使用 Selenium 的 Chrome WebDriver 时出现了问题。具体来说,这个异常是 SessionNotCreatedException,提示会话没有被创建。错误信息中还提到了一个“uniqueContextId not found”的错误,可能是由于浏览器上下文没有正确加载导致的。建议检查代码中的 WebDriver 相关设置是否正确,并且尝试更新 Chrome 浏览器和 WebDriver 版本以解决问题。
相关问题
Exception in thread Thread-2: Traceback (most recent call last): Exception in thread Thread-6:
很抱歉,但是根据提供的引用内容,我无法回答你的问题。引用内容中的错误信息是Python中的异常信息,它指示了在多线程编程中出现了错误。具体的错误原因需要查看代码的上下文和调用栈来确定。请提供更多的信息或者代码上下文,以便我能够更好地帮助你解决问题。
#### 引用[.reference_title]
- *1* [解决pythonTimer报错:Exception in thread Thread-1:Traceback most recent call last](https://blog.csdn.net/weixin_45386875/article/details/113828730)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
Exception in thread Thread-1: Traceback (most recent call last):
引用: Exception in thread Thread-1: Traceback most recent call last.
引用: Exception in thread Thread-1: Traceback (most recent call last): File “D:\Python37\lib\threading.py”, line 917, in _bootstrap_inner self.run() File “D:\Python37\lib\threading.py”, line 1158, in run self.function(*self.args, **self.kwargs) TypeError: ‘NoneType’ object is not callable.
引用: t=Timer(timer_interval,clearTwoBlock())#定时函数
当你得到异常 "Exception in thread Thread-1: Traceback (most recent call last)" 时,这表示在线程 Thread-1 中发生了一个异常,最近的调用发生了错误。
在引用中,异常的具体信息是:"File “D:\Python37\lib\threading.py”, line 917, in _bootstrap_inner self.run() File “D:\Python37\lib\threading.py”, line 1158, in run self.function(*self.args, **self.kwargs) TypeError: ‘NoneType’ object is not callable"。这个错误的意思是在线程运行的过程中,执行的函数为 NoneType 对象,而 NoneType 对象是不可调用的,因此会引发 TypeError。
在引用中,你可能在创建 Timer 对象时遇到了问题。根据提供的代码,你使用了 clearTwoBlock() 作为定时函数,但是你应该只传递函数名,而不是通过函数调用。正确的写法应该是:t=Timer(timer_interval, clearTwoBlock)。
阅读全文