Created
August 15, 2011 18:08
-
-
Save jarib/1147337 to your computer and use it in GitHub Desktop.
watir-webdriver bug report template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'watir-webdriver' | |
path = File.expand_path("test.html") | |
File.open(path, "w") { |io| io << DATA.read } | |
browser = Watir::Browser.new :firefox # replace :firefox with the browser you're having trouble with | |
begin | |
browser.goto "file://#{path}" | |
# your code here | |
ensure | |
browser.quit | |
File.delete path | |
end | |
__END__ | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Page Title</title> | |
</head> | |
<body> | |
<!-- your HTML here --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment