Skip to content

Commit

Permalink
Bump v0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Dec 8, 2020
1 parent 439430c commit 1a66c31
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Main

## v0.28.0 (2020-12-8)

### Breaking

- `Browser.assert_text/2` and `Browser.assert_text/3` now return the parent instead of `true` when the text was found.
Expand All @@ -10,6 +12,22 @@

- File uploads when using local and remote selenium servers.

### Improvements

- Added support for touch events
- `Wallaby.Browser.touch_down/3`
- `Wallaby.Browser.touch_down/4`
- `Wallaby.Browser.touch_up/1`
- `Wallaby.Browser.tap/2`
- `Wallaby.Browser.touch_move/3`
- `Wallaby.Browser.touch_scroll/4`
- `Wallaby.Element.touch_down/3`
- `Wallaby.Element.touch_scroll/3`

- Added support for getting Element size and location
- `Wallaby.Element.size/1`
- `Wallaby.Element.location/1`

## 0.27.0 (2020-12-4)

### Breaking
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Add Wallaby to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:wallaby, "~> 0.27.0", runtime: false, only: :test}
{:wallaby, "~> 0.28.0", runtime: false, only: :test}
]
end
```
Expand Down Expand Up @@ -226,7 +226,6 @@ You will also want to add `phoenix_ecto` as a dependency to `MyWebApp`:

def deps do
[
{:wallaby, "~> 0.27.0", only: :test, runtime: false},
{:phoenix_ecto, "~> 3.0", only: :test}
]
end
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.27.0"
@version "0.28.0"
@drivers ~w(selenium chrome)
@selected_driver System.get_env("WALLABY_DRIVER")
@maintainers [
Expand Down

0 comments on commit 1a66c31

Please sign in to comment.