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
Hi, When calling
browser closeAndExit.
a debug opens with an error : Does not understand #sigterm message
(i use the latest version with Pharo 11 and Pharo-OS-Windows)
i've a workaround in my environment... shall be generalized with Linux and MacOs version :
GoogleChrome>>>closeAndExit "Ask the browser to exit" chromeProcess ifNotNil: [ chromeProcess process terminateProcessWithExitCode: 0. chromeProcess := nil ]
and:
Win32ChromePlatform>>>openChromeWith: arguments | executableLocation cmd | executableLocation := '"',self defaultExecutableLocation,'"'. cmd := arguments ifEmpty: [ executableLocation ] ifNotEmpty: [ executableLocation,' ',(self stringFromArguments: arguments) ]. ^(self class environment at: #WinProcess) createProcess: cmd.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When calling
a debug opens with an error : Does not understand #sigterm message
(i use the latest version with Pharo 11 and Pharo-OS-Windows)
i've a workaround in my environment... shall be generalized with Linux and MacOs version :
and:
The text was updated successfully, but these errors were encountered: