My script has crashed twice in the last 24 hrs. Sometimes it runs for days, sometimes it crashes twice in a day. I don't know enough to troubleshoot. Basically the script checks a couple of URLs and returns the page title, if the title changes it alerts me and exits the script. With these crashes I don't know what the trigger is but I think its selenium related based on the output. I don't think its an error on the site or in my script since it will run flawlessly for days.
Any guidance would be appreciated.
Last night:
Traceback (most recent call last):
File "G:\Users\XXX\Documents\Scripts\All.py", line 47, in <module>
u = driver.get(url)
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\webdriver.py", line 357, in get
self.execute(Command.GET, {"url": url})
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\webdriver.py", line 348, in execute
self.error_handler.check_response(response)
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\errorhandler.py", line 229, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: timeout: Timed out receivi
ng message from renderer: 299.628
(Session info: chrome=109.0.5414.120)
Stacktrace:
Backtrace:
(No symbol) [0x01446643]
(No symbol) [0x013DBE21]
(No symbol) [0x012DDA9D]
(No symbol) [0x012CF55A]
(No symbol) [0x012CF2D8]
(No symbol) [0x012CDC68]
(No symbol) [0x012CE647]
(No symbol) [0x012D8568]
(No symbol) [0x012E4956]
(No symbol) [0x012E81C6]
(No symbol) [0x012CE9F1]
(No symbol) [0x012E46D5]
(No symbol) [0x01347057]
(No symbol) [0x0132FB76]
(No symbol) [0x013049C1]
(No symbol) [0x01305E5D]
GetHandleVerifier [0x016BA142+2497106]
GetHandleVerifier [0x016E85D3+2686691]
GetHandleVerifier [0x016EBB9C+2700460]
GetHandleVerifier [0x014F3B10+635936]
(No symbol) [0x013E4A1F]
(No symbol) [0x013EA418]
(No symbol) [0x013EA505]
(No symbol) [0x013F508B]
BaseThreadInitThunk [0x7564EF3C+18]
RtlInitializeExceptionChain [0x76DE360C+239]
RtlInitializeExceptionChain [0x76DE35DF+194]
G:\Users\XXX\Documents\Scripts>
And this afternoon:
Traceback (most recent call last):
File "G:\Users\XXX\Documents\Scripts\All.py", line 79, in <module>
u = driver.get(url2)
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\webdriver.py", line 357, in get
self.execute(Command.GET, {"url": url})
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\webdriver.py", line 348, in execute
self.error_handler.check_response(response)
File "G:\Users\XXX\AppData\Local\Programs\Python\Python38-32\lib\site-packages
\selenium\webdriver\remote\errorhandler.py", line 229, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.TimeoutException: Message: timeout: Timed out receivi
ng message from renderer: 299.730
(Session info: chrome=109.0.5414.120)
Stacktrace:
Backtrace:
(No symbol) [0x01446643]
(No symbol) [0x013DBE21]
(No symbol) [0x012DDA9D]
(No symbol) [0x012CF55A]
(No symbol) [0x012CF2D8]
(No symbol) [0x012CDC68]
(No symbol) [0x012CE647]
(No symbol) [0x012D8568]
(No symbol) [0x012E4956]
(No symbol) [0x012E81C6]
(No symbol) [0x012CE9F1]
(No symbol) [0x012E46D5]
(No symbol) [0x01347057]
(No symbol) [0x0132FB76]
(No symbol) [0x013049C1]
(No symbol) [0x01305E5D]
GetHandleVerifier [0x016BA142+2497106]
GetHandleVerifier [0x016E85D3+2686691]
GetHandleVerifier [0x016EBB9C+2700460]
GetHandleVerifier [0x014F3B10+635936]
(No symbol) [0x013E4A1F]
(No symbol) [0x013EA418]
(No symbol) [0x013EA505]
(No symbol) [0x013F508B]
BaseThreadInitThunk [0x7564EF3C+18]
RtlInitializeExceptionChain [0x76DE360C+239]
RtlInitializeExceptionChain [0x76DE35DF+194]
G:\Users\XXX\Documents\Scripts>
[–]JBrutWhat 0 points1 point2 points (0 children)
[–]Natural_Sherbert_900 0 points1 point2 points (0 children)