Skip to content
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

Error when closeAndExit #8

Open
ELePors opened this issue Jan 5, 2023 · 0 comments
Open

Error when closeAndExit #8

ELePors opened this issue Jan 5, 2023 · 0 comments

Comments

@ELePors
Copy link

ELePors commented Jan 5, 2023

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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant