diff --git a/CHANGELOG.md b/CHANGELOG.md index ef121cee..650d794b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.19.0] - 2020-09-22 +### Changed +- is_visible / is_not_visible methods try to handle stale element exceptions by retrying search + ## [0.18.0] - 2020-09-14 ### Changed - Button and Link Fields wait for visible/clickable status before clicking diff --git a/setup.py b/setup.py index 497f8758..15678817 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.18.0", + version="0.19.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",