-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error #16
Comments
Solution I found an error in the script logs saying: ERROR:page_load_metrics_update_dispatcher.cc(194)] Invalid first_paint error using Selenium Python ChromeDriver Upon surfing the web, I found this thread: https://stackoverflow.com/questions/75830184/errorpage-load-metrics-update-dispatcher-cc194-invalid-first-paint-error-usi It talks about how the above error message indicates that there is a mismatch between the binary versions you are using. On a more deeper level As per the [comment](https://bugs.chromium.org/p/chromedriver/issues/detail?id=3341#c1) within%C2%A0within) the [discussion](https://bugs.chromium.org/p/chromedriver/issues/detail?id=3341): The supported configuration is to always match the version between Chrome and ChromeDriver - so when you are using Chrome 80, you should use Chrome 80. It is also possible to run ChromeDriver N with Chrome N+1, but this will always generate the warning you see. Most operations will complete successfully, but it is not the recommended approach. The solution is to upgrade ChromeDriver to version 80: https://chromedriver.chromium.org/downloads This is understandable because, most of the operations were working fine in the script, but some operations were acting wonky. The straight and simple solution is to You need to ensure: ChromeDriver is updated to the latest version - as of 21st October 2023 - that is 118.0.XXXX.X family Download the latest stable version of the chrome driver according to your operating system : https://googlechromelabs.github.io/chrome-for-testing/#stable Copy the absolute path to the chrome.exe file inside the downloaded chrome driver folder. Look into line number 61 in appliFly.py file and uncomment as well as update the absolute path to the chrome driver which you just downloaded from the above mentioned link.
Chrome Browser is updated to the latest version - as of 21st October 2023 - that is the 118.0.XXX.X family Selenium is upgraded to current released [Version 4.8.0](https://www.selenium.dev/downloads/). |
Stacktrace:
GetHandleVerifier [0x00007FF675363E32+31618]
(No symbol) [0x00007FF6752DB099]
(No symbol) [0x00007FF67519888A]
(No symbol) [0x00007FF6751E8524]
(No symbol) [0x00007FF6751E862C]
(No symbol) [0x00007FF67522F787]
(No symbol) [0x00007FF67520D14F]
(No symbol) [0x00007FF67522CA80]
(No symbol) [0x00007FF67520CEB3]
(No symbol) [0x00007FF6751DA46B]
(No symbol) [0x00007FF6751DB001]
GetHandleVerifier [0x00007FF675669FFD+3202381]
GetHandleVerifier [0x00007FF6756B6A1D+3516269]
GetHandleVerifier [0x00007FF6756AC490+3473888]
GetHandleVerifier [0x00007FF675415D36+760454]
(No symbol) [0x00007FF6752E6B3F]
(No symbol) [0x00007FF6752E1CD4]
(No symbol) [0x00007FF6752E1E62]
(No symbol) [0x00007FF6752D120F]
BaseThreadInitThunk [0x00007FF96C97257D+29]
RtlUserThreadStart [0x00007FF96E8AAF28+40]
The text was updated successfully, but these errors were encountered: