Skip to content

Commit

Permalink
#245 - select() option by value or text
Browse files Browse the repository at this point in the history
  • Loading branch information
kensoh committed May 12, 2021
1 parent a847f5d commit 246a58d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RPA for Python :snake:

[**v1.32**](https://github.com/tebelorg/RPA-Python/releases) | [**Use Cases**](#use-cases) | [**API Reference**](#api-reference) | [**About & Credits**](#about--credits) | [**PyCon Video**](https://www.youtube.com/watch?v=F2aQKWx_EAE) | [**Run in Colab**](https://colab.research.google.com/drive/13bQO6G_hzE1teX35a3NZ4T5K-ICFFdB5?usp=sharing) | [**Telegram Chat**](https://t.me/rpa_chat)
[**v1.33**](https://github.com/tebelorg/RPA-Python/releases) | [**Use Cases**](#use-cases) | [**API Reference**](#api-reference) | [**About & Credits**](#about--credits) | [**PyCon Video**](https://www.youtube.com/watch?v=F2aQKWx_EAE) | [**Run in Colab**](https://colab.research.google.com/drive/13bQO6G_hzE1teX35a3NZ4T5K-ICFFdB5?usp=sharing) | [**Telegram Chat**](https://t.me/rpa_chat)

>_This tool was previously known as TagUI for Python. [More details](https://github.com/tebelorg/RPA-Python/issues/100) on the name change, which is backward compatible so existing scripts written with `import tagui as t` and `t.function()` will still work._
Expand Down
2 changes: 1 addition & 1 deletion rpa_package/rpa.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Apache License 2.0, Copyright 2019 Tebel.Automation Private Limited
# https://github.com/tebelorg/RPA-Python/blob/master/LICENSE.txt
__author__ = 'Ken Soh <opensource@tebel.org>'
__version__ = '1.33.0'
__version__ = '1.33.1'

# for backward compatibility, invoke tagui.py functions to use in rpa.py
from tagui import *
4 changes: 2 additions & 2 deletions rpa_package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

setup(
name='rpa',
version='1.33.0',
py_modules=['rpa'], install_requires=['tagui>=1.32.0'],
version='1.33.1',
py_modules=['rpa'], install_requires=['tagui>=1.33.0'],
author='Ken Soh',
author_email='opensource@tebel.org',
license='Apache License 2.0',
Expand Down

0 comments on commit 246a58d

Please sign in to comment.