Skip to content

Instantly share code, notes, and snippets.

@jarib
Created June 14, 2011 13:02
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save jarib/1024843 to your computer and use it in GitHub Desktop.
Save jarib/1024843 to your computer and use it in GitHub Desktop.
selenium-webdriver bug report template
require 'rubygems'
require 'selenium-webdriver'
path = File.expand_path("test.html")
File.open(path, "w") { |io| io << DATA.read }
browser = Selenium::WebDriver.for :firefox # replace :firefox with the browser you're having trouble with
begin
browser.get "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>
@Herzog81
Copy link

Herzog81 commented Mar 26, 2021

browser = Selenium::WebDriver. für :chrome - ersetzen :firefox mit dem Browser, mit dem Sie Probleme haben

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment