Don Pflaster
Don Pflaster
I also encountered this issue on my Mac. ``` mix husky.install ... running 'husky.install' task ** (RuntimeError) '/Users/don/.git' directory does not exist. Try running $ git init lib/husky/task/install.ex:40: Mix.Tasks.Husky.Install.create_scripts/2 (mix...
It seems unlikely that `:timer.sleep\1` is causing your problem. Hound commands send API calls to your webdriver of choice to interact with the page, and `:timer.sleep\1` wouldn't do that. Is...
I believe this happened to me when I moved my `gettext` dependency from my child app to my top-level umbrella app. Never saw the error until I did that. The...
@MikaAK Also ensure that your ChromeDriver version is up to date. I have it working on: ```ChromeDriver 2.29.461585 (0be2cd95f834e9ee7c46bcc7cf405b483f5ae83b)```
My params look like this, btw... ``` %{driver: %{ browserName: "chrome", chromeOptions: %{"args" => [ "--headless", "--disable-gpu" ]} }} ```
Generally when I've encountered something like this, it's because the webdriver application did not successfully start and it sent something other than XML back to Hound. Perhaps the `ResponseParser` just...
Oh look you did something like that 😄 https://github.com/HashNuke/hound/pull/158/files
I tried Chrome headless out myself yesterday and also did not get it to start a session on the port I asked it to (`remote_debugging_port`). This was the dev channel...
I would think running chrome headless should eliminate the need to have Xvfb. Do you have to first launch chrome --headless within the docker container and pick a --remote-debugging-port for...
I have been using straight CSS to get at it, seems to work, but sometimes it has locked up my Selenium... ``` Page.find_element(:css, "#select_id option[value='value']") |> Element.click ``` You can...