Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/ievm.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ class IEVM
@ensureRunning().then => @waitForNetwork().then =>
@debug "open: #{url}"
if wait
return @exec 'C:\\Program Files\\Internet Explorer\\iexplore.exe', url
return @exec 'explore', url
@exec 'cmd.exe', '/c', 'start',
'C:\\Program Files\\Internet Explorer\\iexplore.exe', url
'explore', url

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will not work with older versions of IE (IE8, for example).


# Close running IE windows in the virtual machine, failing silently if IE is
# not currently running.
Expand Down Expand Up @@ -531,4 +531,4 @@ class IEVM
Q.delay(delay).then =>
@waitForNetwork host, retries - 1, delay if retries > 0

module.exports = IEVM
module.exports = IEVM