We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I ran into this issue recently while unsuccesfully trying to use this library: https://stackoverflow.com/questions/76734820/there-is-no-such-driver-by-url-chromedriver
The text was updated successfully, but these errors were encountered:
Yeah I think it is broken as of Chrome 115...
Hotfix (works for me): in scrape-google-scholar-py\google_scholar_py\custom_backend\profiles_results.py
line 113: service = Service(ChromeDriverManager().install()) change to service = Service() #ChromeDriverManager().install())
service = Service(ChromeDriverManager().install())
service = Service() #ChromeDriverManager().install())
Sorry, something went wrong.
Hey guys, just want to let you know that I'm no longer maintaining this repository 🙂
@Yeok-c, thank you for providing help.
That's a pity - I've scraped plenty a scholars with your code 🤣 thanks man and hope you find success wherever else you're working on
No branches or pull requests
I ran into this issue recently while unsuccesfully trying to use this library:
https://stackoverflow.com/questions/76734820/there-is-no-such-driver-by-url-chromedriver
The text was updated successfully, but these errors were encountered: