-
Notifications
You must be signed in to change notification settings - Fork 97
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
PR/add jsk aibo robot #1852
base: master
Are you sure you want to change the base?
PR/add jsk aibo robot #1852
Conversation
@@ -0,0 +1,71 @@ | |||
1694083040310 geckodriver INFO Listening on 127.0.0.1:36887 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to keep the code base minimal, files that are generated later, such as log files, generally speaking, should not be included in the git repository.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@a-ichikura Could you update jsk_aibo_robot/aibo_selenium_ros/.gitignore
so that this file will not be added to git repo?
if chrome_executable_path is not None: | ||
options.binary_location = chrome_executable_path | ||
|
||
self.driver = uc.Chrome(executable_path=webdriver_path, options=options, version_main=115) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chrominum version is different for each system. So it will be convenient if this program retrieve main version from chromium-browser --version
command. See 7cbcd36 for reference.
we add
version_main
parameter into init.py because the version of undetected driver should be as same as chrome-driver and chrome-browser. with @sktometometo