← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #197423]: how to set the URL

 

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.