Class: GDK::Diagnostic::Chromedriver
- Defined in:
- lib/gdk/diagnostic/chromedriver.rb
Constant Summary collapse
- TITLE =
'Chromedriver'
Instance Method Summary collapse
Methods inherited from Base
Instance Method Details
#detail ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/gdk/diagnostic/chromedriver.rb', line 12 def detail return if success? <<~CHROME_DRIVER_INSTALLED You have chromedriver installed via homebrew. The gitlab project utilizes selenium-manager to manage Google Chrome and chromedriver versions. You may uninstall it with: brew uninstall chromedriver CHROME_DRIVER_INSTALLED end |
#success? ⇒ Boolean
8 9 10 |
# File 'lib/gdk/diagnostic/chromedriver.rb', line 8 def success? !chrome_driver_installed end |