Skip to content

Commit f65faa4

Browse files
committed
Bump
- Version 22.4.0
1 parent bb77d2a commit f65faa4

15 files changed

Lines changed: 27 additions & 15 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#! /usr/bin/env python3
2+
#
3+
# Gets the class name
4+
#
5+
6+
from com.dtmilano.android.viewclient import ViewClient
7+
8+
helper = ViewClient.view_client_helper(kato=False)
9+
10+
oid = helper.ui_device.find_object(ui_selector='[email protected],[email protected]:id/op_add').oid
11+
print(helper.ui_object.dump(oid=oid))
12+
print(helper.ui_object.get_class_name(oid=oid))

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
setup(name='androidviewclient',
6-
version='22.3.1',
6+
version='22.4.0',
77
description='''AndroidViewClient is a 100% pure python library and tools
88
that simplifies test script creation providing higher level
99
operations and the ability of obtaining the tree of Views present at
@@ -22,5 +22,5 @@
2222
classifiers=['Development Status :: 5 - Production/Stable',
2323
'Intended Audience :: Developers',
2424
'License :: OSI Approved :: Apache Software License'],
25-
install_requires=['setuptools', 'requests', 'numpy', 'matplotlib', 'culebratester-client >= 2.0.52'],
25+
install_requires=['setuptools', 'requests', 'numpy', 'matplotlib', 'culebratester-client >= 2.0.64'],
2626
)

sphinx/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
project = 'AndroidViewClient/culebra'
1212
copyright = '2022, Diego Torres Milano'
1313
author = 'Diego Torres Milano'
14-
release = '22.3.1'
14+
release = '22.4.0'
1515

1616
# -- General configuration ---------------------------------------------------
1717
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

src/com/dtmilano/android/adb/adbclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
from com.dtmilano.android.adb.dumpsys import Dumpsys
2929

30-
__version__ = '22.3.1'
30+
__version__ = '22.4.0'
3131

3232
import sys
3333
import warnings

src/com/dtmilano/android/adb/dumpsys.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import sys
2424
from _warnings import warn
2525

26-
__version__ = '22.3.1'
26+
__version__ = '22.4.0'
2727

2828
DEBUG = False
2929

src/com/dtmilano/android/code_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from abc import ABC
44
from datetime import date
55

6-
__version__ = '22.3.1'
6+
__version__ = '22.4.0'
77

88
from typing import TextIO, Union, Dict, List
99

src/com/dtmilano/android/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
from __future__ import print_function
2222

23-
__version__ = '22.3.1'
23+
__version__ = '22.4.0'
2424

2525
import ast
2626
import os

src/com/dtmilano/android/concertina.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import random
2323

2424
__author__ = 'diego'
25-
__version__ = '22.3.1'
25+
__version__ = '22.4.0'
2626

2727
DEBUG = True
2828

src/com/dtmilano/android/controlpanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'''
2121
import platform
2222

23-
__version__ = '22.3.1'
23+
__version__ = '22.4.0'
2424

2525
import tkinter
2626
import tkinter.ttk

src/com/dtmilano/android/culebron.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from com.dtmilano.android.uiautomator.uiautomatorhelper import UiAutomatorHelper
3939
from com.dtmilano.android.viewclient import ViewClient, View, VERSION_SDK_PROPERTY
4040

41-
__version__ = '22.3.1'
41+
__version__ = '22.4.0'
4242

4343
import sys
4444
import threading

0 commit comments

Comments
 (0)