From 7ff445c46eeb11dfb20c8e0c9e6e94a9529d12bd Mon Sep 17 00:00:00 2001 From: serhatbolsu Date: Tue, 27 Sep 2016 01:14:23 +0300 Subject: [PATCH] Version update and minor doc --- doc/AppiumLibrary.html | 2 +- src/AppiumLibrary/__init__.py | 4 +++- src/AppiumLibrary/version.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/AppiumLibrary.html b/doc/AppiumLibrary.html index 5f763025..c3a00d45 100644 --- a/doc/AppiumLibrary.html +++ b/doc/AppiumLibrary.html @@ -468,7 +468,7 @@ jQuery.extend({highlight:function(e,t,n,r){if(e.nodeType===3){var i=e.data.match(t);if(i){var s=document.createElement(n||"span");s.className=r||"highlight";var o=e.splitText(i.index);o.splitText(i[0].length);var u=o.cloneNode(true);s.appendChild(u);o.parentNode.replaceChild(s,o);return 1}}else if(e.nodeType===1&&e.childNodes&&!/(script|style)/i.test(e.tagName)&&!(e.tagName===n.toUpperCase()&&e.className===r)){for(var a=0;a diff --git a/src/AppiumLibrary/__init__.py b/src/AppiumLibrary/__init__.py index 058c84ed..9db840e1 100644 --- a/src/AppiumLibrary/__init__.py +++ b/src/AppiumLibrary/__init__.py @@ -37,7 +37,9 @@ class AppiumLibrary( | Click Element id=my_element New in AppiumLibrary 1.4, ``id`` and ``xpath`` are not required to be specified, - however ``xpath`` should normally start with ``//``. For example: + however ``xpath`` should start with ``//`` else just use ``xpath`` locator as explained below. + + For example: | Click Element my_element | Wait Until Page Contains Element //*[@type="android.widget.EditText"] diff --git a/src/AppiumLibrary/version.py b/src/AppiumLibrary/version.py index bf616224..38fe754c 100644 --- a/src/AppiumLibrary/version.py +++ b/src/AppiumLibrary/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -VERSION = '1.4.0.dev2' +VERSION = '1.4.0.b1'