Comment 2 for bug 701363

Revision history for this message
RaiMan (raimund-hocke) wrote : Re: [request] App.open should support command line options on Windows

As stated above: this is not possible yet! only path to a program or part of the window title for open windows is possible.

look: http://sikuli.org/docx/globals.html#controlling-applications-and-their-windows

how to start applications on Windows.

to get FF to open a web page tis is the easiest way:

App.focus("Firefox")
type('l', KEY_CTRL) # goes to address field and selects content
paste("http://localhost:8080/")
type(Key.ENTER)