Skip to content

Commit 9d75786

Browse files
committed
chore: bump v0.30.3
1 parent 831fa2c commit 9d75786

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Main
44

5+
## v0.30.3
6+
7+
- Better support Chromedriver tests on machines with tons of cores
8+
59
## v0.30.2
610

711
- Surface 'text' condition in css query error message (#714)

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
![Wallaby](https://i.imgur.com/eQ1tlI3.png)
2-
============
1+
# ![Wallaby](https://i.imgur.com/eQ1tlI3.png)
32

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

106104
- Chrome
107-
- [`chromedriver`](https://chromedriver.chromium.org/downloads)
105+
- [`chromedriver`](https://chromedriver.chromium.org/downloads)
108106

109-
- Selenium
110-
- [`selenium`](https://www.selenium.dev/downloads/)
111-
- [`geckodriver`](https://github.com/mozilla/geckodriver) (for Firefox) or [`chromedriver`](https://chromedriver.chromium.org/downloads) (for Chrome)
107+
- Selenium
108+
- [`selenium`](https://www.selenium.dev/downloads/)
109+
- [`geckodriver`](https://github.com/mozilla/geckodriver) (for Firefox) or [`chromedriver`](https://chromedriver.chromium.org/downloads) (for Chrome)
112110

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

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

556554
You can use one of the following functions:
557555

558-
* For `window.alert` use `accept_alert/2`
559-
* For `window.confirm` use `accept_confirm/2` or `dismiss_confirm/2`
560-
* For `window.prompt` use `accept_prompt/2-3` or `dismiss_prompt/2`
556+
- For `window.alert` use `accept_alert/2`
557+
- For `window.confirm` use `accept_confirm/2` or `dismiss_confirm/2`
558+
- For `window.prompt` use `accept_prompt/2-3` or `dismiss_prompt/2`
561559

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

@@ -624,7 +622,6 @@ Wallaby requires the following tools.
624622
- Mozilla Firefox
625623
- selenium-server-standalone
626624

627-
628625
```shell
629626
# Unit tests
630627
$ mix test

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Wallaby.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/elixir-wallaby/wallaby"
5-
@version "0.30.2"
5+
@version "0.30.3"
66
@drivers ~w(selenium chrome)
77
@selected_driver System.get_env("WALLABY_DRIVER")
88
@maintainers ["Mitchell Hanberg"]

0 commit comments

Comments
 (0)