Skip to content

Commit

Permalink
DOCS: prepare for release 2.0.0b6
Browse files Browse the repository at this point in the history
  • Loading branch information
yashaka committed Aug 31, 2022
1 parent e57445e commit b29d91b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,17 @@
## 2.0.0b7 (to be released on xx.09.2022)
- TODO: trim text in have.exact_text

## 2.0.0b6 (to be released on xx.08.2022)
## 2.0.0b6 (to be released on 31.08.2022)
- NEW: added "opera" and "edge" support for shared browser
- example:

```python
from selene.support.shared import browser

# browser.config.browser_name = 'opera'
browser.config.browser_name = 'edge'
```

- NEW: added config._wait_decorator
- decorating Wait#for_ method
- that is used when performing any element command
Expand All @@ -91,8 +101,10 @@
- prefixed with underscore, indicating that method is experimental,
and can be e.g. renamed, etc.
- see example at [examples/log_all_selene_commands_with_wait.py](https://github.com/yashaka/selene/tree/master/examples/log_all_selene_commands_with_wait.py)

- NEW: added config.click_by_js [#420](https://github.com/yashaka/selene/issues/420)
- for usage like in:

```python
from selene.support.shared import browser

Expand Down

0 comments on commit b29d91b

Please sign in to comment.