Skip to content

Commit

Permalink
chore: bump v0.30.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Apr 3, 2023
1 parent 831fa2c commit 9d75786
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Main

## v0.30.3

- Better support Chromedriver tests on machines with tons of cores

## v0.30.2

- Surface 'text' condition in css query error message (#714)
Expand Down
19 changes: 8 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
![Wallaby](https://i.imgur.com/eQ1tlI3.png)
============
# ![Wallaby](https://i.imgur.com/eQ1tlI3.png)

[![Actions Status](https://github.com/elixir-wallaby/wallaby/workflows/CI/badge.svg)](https://github.com/elixir-wallaby/wallaby/actions)
[![codecov](https://codecov.io/gh/elixir-wallaby/wallaby/branch/main/graph/badge.svg?token=eaEe1AIM2e)](https://codecov.io/gh/elixir-wallaby/wallaby)
[![Module Version](https://img.shields.io/hexpm/v/wallaby.svg)](https://hex.pm/packages/wallaby)
[![Hex Docs](https://img.shields.io/badge/hex-docs-lightgreen.svg)](https://hexdocs.pm/wallaby/)
[![License](https://img.shields.io/hexpm/l/wallaby.svg)](https://github.com/elixir-wallaby/wallaby/blob/master/LICENSE)
Expand Down Expand Up @@ -104,11 +102,11 @@ config :wallaby, driver: Wallaby.Selenium
You'll need to install the actual drivers as well.

- Chrome
- [`chromedriver`](https://chromedriver.chromium.org/downloads)
- [`chromedriver`](https://chromedriver.chromium.org/downloads)

- Selenium
- [`selenium`](https://www.selenium.dev/downloads/)
- [`geckodriver`](https://github.com/mozilla/geckodriver) (for Firefox) or [`chromedriver`](https://chromedriver.chromium.org/downloads) (for Chrome)
- Selenium
- [`selenium`](https://www.selenium.dev/downloads/)
- [`geckodriver`](https://github.com/mozilla/geckodriver) (for Firefox) or [`chromedriver`](https://chromedriver.chromium.org/downloads) (for Chrome)

When calling `use Wallaby.Feature` and using Ecto, please configure your `otp_app`.

Expand Down Expand Up @@ -555,9 +553,9 @@ Wallaby provides several ways to interact with JavaScript dialogs such as `windo

You can use one of the following functions:

* For `window.alert` use `accept_alert/2`
* For `window.confirm` use `accept_confirm/2` or `dismiss_confirm/2`
* For `window.prompt` use `accept_prompt/2-3` or `dismiss_prompt/2`
- For `window.alert` use `accept_alert/2`
- For `window.confirm` use `accept_confirm/2` or `dismiss_confirm/2`
- For `window.prompt` use `accept_prompt/2-3` or `dismiss_prompt/2`

All of these take a function as last parameter, which must include the necessary interactions to trigger the dialog. For example:

Expand Down Expand Up @@ -624,7 +622,6 @@ Wallaby requires the following tools.
- Mozilla Firefox
- selenium-server-standalone


```shell
# Unit tests
$ mix test
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Wallaby.Mixfile do
use Mix.Project

@source_url "https://github.com/elixir-wallaby/wallaby"
@version "0.30.2"
@version "0.30.3"
@drivers ~w(selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers ["Mitchell Hanberg"]
Expand Down

0 comments on commit 9d75786

Please sign in to comment.