In Python, you can do this:
import webbrowser
webbrowser.open_new("http://example.com/")
It will open the passed in url in the default browser
Is there a ruby equivalent?
|
|
|
|
|
|
|
Cross-platform solution First, install the Launchy gem:
Then, you can run this:
|
|||
|
|
|
|
Windows Only Solution:
|
||
|
|
|
|
If it's windows and it's IE, try this: http://rubyonwindows.blogspot.com/search/label/watir also check out Selenium ruby: http://selenium.rubyforge.org/getting-started.html HTH |
||
|
|
|
Mac-only solution:
or
|
|||
|
|
|
|
This also works:
|
||
|
|
|
Simplest Win solution: `start http://www.example.com` |
||
|
|