You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2018. It is now read-only.
On Windows machine program/process will be in C:/Program Files (x86)/.... The absolute path could have space in between. The windows implementation of OSUtil class which is WinUtil class is causing issue since it is taking the full process same in a single string, & later separating the parameters with space separator logic.
I would suggest for taking the process/program name separately while creating the App object.
t = App.open('"C:\\Program Files\\Internet Explorer\\iexplore.exe" http://my.URL.under.test/')
I think the general rule is "if it works on the command line, it should work with App.open()". In this case, put double quotes around the path/executable name so it's recognized as a single token.
On Windows machine program/process will be in C:/Program Files (x86)/.... The absolute path could have space in between. The windows implementation of OSUtil class which is WinUtil class is causing issue since it is taking the full process same in a single string, & later separating the parameters with space separator logic.
I would suggest for taking the process/program name separately while creating the App object.
The text was updated successfully, but these errors were encountered: