From b0d512e18e35610488f0573edd9863e79694c92c Mon Sep 17 00:00:00 2001 From: jsfehler Date: Tue, 17 Jan 2023 17:41:13 -0500 Subject: [PATCH] Bump version to 0.19.0 (#1124) --- docs/news/0.19.0 | 28 ++++++++++++++++++++++++++++ splinter/version.py | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 docs/news/0.19.0 diff --git a/docs/news/0.19.0 b/docs/news/0.19.0 new file mode 100644 index 000000000..658a4d69b --- /dev/null +++ b/docs/news/0.19.0 @@ -0,0 +1,28 @@ +.. Copyright 2023 splinter authors. All rights reserved. + Use of this source code is governed by a BSD-style + license that can be found in the LICENSE file. + +.. meta:: + :description: New splinter features on version 0.19.0. + :keywords: splinter 0.19.0, news + +[0.19.0] +======== + +Added +----- + +* The methods WebDriverElement.is_visible() and WebDriverElement.is_not_visible() are now available as a replacement for WebDriver.is_element_not_visible_by_css and WebDriver.is_element_visible_by_css. + See https://splinter.readthedocs.io/en/latest/matchers.html#checking-the-visibility-of-elements for more information. + +Changed +------- + +* When CookieManager.delete() is called with no arguments then all cookies are deleted. This behaviour has been deprecated. CookieManager.delete_all() should be used instead. +* The message for the error raised when a driver's class is not found has been improved. + +Fixed +----- + +* FlaskDriver.attach_file() has been fixed. +* urllib3 is now always installed, regardless of driver used. diff --git a/splinter/version.py b/splinter/version.py index d0769dd72..f873d904b 100644 --- a/splinter/version.py +++ b/splinter/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 18, 1) +__version_info__ = (0, 19, 0) __version__ = '.'.join(map(str, __version_info__))