test_selector alternatives and similar packages
Based on the "Testing" category.
Alternatively, view test_selector alternatives based on common mentions on social networks and blogs.
-
bypass
Bypass provides a quick way to create a custom plug that can be put in place instead of an actual HTTP server to return prebaked responses to client requests. -
mix_test_interactive
Interactive watch mode for Elixir's mix test. https://hexdocs.pm/mix_test_interactive/ -
mecks_unit
A simple Elixir package to elegantly mock module functions within (asynchronous) ExUnit tests using Erlang's :meck library
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of test_selector or a related project?
README
TestSelector
A set of Elixir and Hound helpers to set/get test selectors to/from elements in a Phoenix app (when Mix.env == :test
). These selectors are hashed (scoped to the view module they are used in) for accurate selection and "leakage" prevention. See our Wiki for examples.
Why? Because we prefer reserving classes for styling, and id's have limitations because they have to be unique.
Dependencies
Installation
def deps do
[{:test_selector, "~> 0.3.1"}]
end
Use TestSelector.HTML.Helpers
to your web.ex.
- In phoenix 1.2.0 at
web/web.ex
- In newer Phoenix versions
lib/your_project/web/web.ex
Add somewhere along:
def view(opts \\ []) do
quote do
...
use Phoenix.HTML
use TestSelector.HTML.Helpers
...
end
end
Testing with Floki
In the tests import the TestSelector.Test.HoundHelpers
:
defmodule Project.Web.MyTest do
...
use Hound.Helpers
import TestSelector.Test.FlokiHelpers
...
end
Testing with Hound
In the tests import the TestSelector.Test.HoundHelpers
defmodule Project.Web.MyTest do
...
use Hound.Helpers
import TestSelector.Test.HoundHelpers
...
end
Tests
To run tests you need to install PhantomJS.
brew install phantomjs
Run the webdriver:
phantomjs -w
Run the tests:
mix test