-
Notifications
You must be signed in to change notification settings - Fork 5
Andrew/which windows #93
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
Conversation
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.
siempre chrome_wrapper necesita un BROWSER_PATH
@neyberson comentarios porfa |
if path and _is_exe(path): | ||
return path | ||
default_path = [] | ||
if executable_name == chrome: |
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.
Aquí se podría dar un aviso de que el executable_name
no está registrado en nuestras opciones? para mostrar qué opciones hay disponibles por si el usuario quiere jugar con la API
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.
we have to try and predict the name of the executable, we use a path-search function (which
) with a list of common names. in this case, if none of that works, we try a list of the most common hard paths.
the user can always change the path with BROWSER_PATH
env var, or with path=
argument
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.
No description provided.