Question #197423 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/197423

RaiMan posted a new comment:
With version 1.0.1 you could simply use:

if the url string contains blanks

run('start "' + url "')

or 
run ("start " + url.replace(" ", "%20"))

if you are sure there are no blanks, this would be sufficient:
run ("start " + url)

this is for Windows.

For Mac use open instead of start.

This will open the url in your standard browser.

This works now, because I reworked the run command completely.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to