e6d57befec
Update Chromedriver to 2.21 Closes Homebrew/homebrew#48750. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
class Chromedriver < Formula
|
|
desc "Tool for automated testing of webapps across many browsers"
|
|
homepage "https://sites.google.com/a/chromium.org/chromedriver/"
|
|
url "https://chromedriver.storage.googleapis.com/2.21/chromedriver_mac32.zip"
|
|
version "2.21"
|
|
sha256 "41f21005b498adc5896e4c3e264d718e4ade09609a7544ea8753d4e8ef1e787f"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "chromedriver"
|
|
end
|
|
|
|
def plist; <<-EOS.undent
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>homebrew.mxcl.chromedriver</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<false/>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/chromedriver</string>
|
|
</array>
|
|
<key>ServiceDescription</key>
|
|
<string>Chrome Driver</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/chromedriver-error.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/chromedriver-output.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
driver = fork do
|
|
exec bin/"chromedriver",
|
|
"--port=9999", "--log-path=#{testpath}/cd.log"
|
|
end
|
|
sleep 5
|
|
Process.kill("TERM", driver)
|
|
File.exist? testpath/"cd.log"
|
|
end
|
|
end
|