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
There is no strict way to pass your own settings if you have another path to chromedriver or google-chrome-stable
The text was updated successfully, but these errors were encountered:
It is a good point that we need a way to customize chrome initialization. Feel free to suggest a solution, I will also look for a way to enable this.
Sorry, something went wrong.
like
class ChatGPT_Client: ... def __init__( self, username :str, password :str, headless :bool = True, cold_start :bool = False, verbose :bool = False, browser .. = None ): .. if browser is None: self.browser = uc.Chrome( # driver_executable_path='/usr/bin/google-chrome', options=options, headless=headless, version_main=112 ) ...
I addressed your problem with commit 6cde457. Now you can pass driver executable and options to constructor, I hope that will be helpful for you.
No branches or pull requests
There is no strict way to pass your own settings if you have another path to chromedriver or google-chrome-stable
The text was updated successfully, but these errors were encountered: