Diego Pava
Diego Pava
Hi @yeban. I gave this one a go and consulted with @ikozakov. Why is it desirable to skip the tests rather than making sure that geckodriver is installed? If this...
Hi both, I tried both approaches but I get this message and failures for all capyabara tests: `Failure/Error: !!'geckodriver -V'.match(/geckodriver \d+.\d+.\d+/) Errno::ENOENT: No such file or directory - geckodriver` Where...
@ikozakov this happens when geckodriver is not installed and I run: `rspec spec/capybara_spec.rb` or `rspec spec` In spec_helper.rb: Line 8: ``` def geckodriver_installed? # geckodriver 0.31.0 !!'geckodriver -V'.match(/geckodriver \d+.\d+.\d+/) end...
Hi both, thank you very much for your help. I've implemented these changes in #604.