hound
hound copied to clipboard
Elixir library for writing integration tests and browser automation
The `GenServer.call` call in https://github.com/HashNuke/hound/blob/master/lib/hound/session_server.ex#L38 times out on CI from time to time. It would be nice to be able to configure this timeout to be able to adjust for...
I'm trying to get the current_url of a page with phantomjs but calling current_url throws the error: ``` ** (Poison.SyntaxError) Unexpected token at position 0: E lib/poison/parser.ex:57: Poison.Parser.parse!/2 lib/poison.ex:83: Poison.decode!/2...
Hi, Is there anyone who has successfully written a test that interacts with file upload windows? Of course, I can open the dialog but when I try to select the...
We just released the first version of [test_selector](https://github.com/DefactoSoftware/test_selector), a set of helpers to set/get test selectors to/from elements in a Phoenix app (when `env == :test`). These selectors are hashed...
Hi, I'm testing something that requires the user to choose a file to upload. How do I handle that dialog? - user presses "choose file" button. - a file chooser...
I was having an issue trying to split off some common functionality -- would love if someone could help out with an answer ```elixir defmodule MyApp.Support.Integration.SignInHelper do use Hound.Helpers def...
Hello, I started a headless chrome using this [Dockerfile](https://github.com/justinribeiro/dockerfiles/blob/master/chrome-headless/Dockerfile) and added the following config for Hound ```elixir config :hound, driver: "chrome_driver", port: 9222, ``` However as soon as Hound.start_session() is...
Will there be support for the [Gecko](https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette/WebDriver#Installing_Selenium) web driver? I can start working on this a bit, but I'm fairly new to working with webdrivers.
Hello folks, I have a code that navigate to the url and need to wait 5/10 seconds with **keeping focus on** to execute/validade some Javascript after... The way I have...
I'm trying to scrape the products from Amazon with a simple code, and when I take a screenshot I've got this : https://ibb.co/nDmCf5 As you can see, I can't get...