robo_appian 0.0.13__tar.gz → 0.0.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of robo_appian might be problematic. Click here for more details.

Files changed (22) hide show
  1. {robo_appian-0.0.13 → robo_appian-0.0.14}/PKG-INFO +1 -2
  2. {robo_appian-0.0.13 → robo_appian-0.0.14}/README.md +0 -1
  3. {robo_appian-0.0.13 → robo_appian-0.0.14}/pyproject.toml +1 -1
  4. {robo_appian-0.0.13 → robo_appian-0.0.14}/LICENSE +0 -0
  5. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/__init__.py +0 -0
  6. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/ButtonUtils.py +0 -0
  7. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/DateUtils.py +0 -0
  8. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/DropdownUtils.py +0 -0
  9. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/InputUtils.py +0 -0
  10. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/LabelUtils.py +0 -0
  11. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/LinkUtils.py +0 -0
  12. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/SearchDropdownUtils.py +0 -0
  13. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/SearchInputUtils.py +0 -0
  14. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/TabUtils.py +0 -0
  15. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/TableUtils.py +0 -0
  16. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/components/__init__.py +0 -0
  17. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/controllers/ComponentDriver.py +0 -0
  18. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/controllers/__init__.py +0 -0
  19. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/exceptions/MyCustomError.py +0 -0
  20. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/exceptions/__init__.py +0 -0
  21. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/utils/ComponentUtils.py +0 -0
  22. {robo_appian-0.0.13 → robo_appian-0.0.14}/robo_appian/utils/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: robo_appian
3
- Version: 0.0.13
3
+ Version: 0.0.14
4
4
  Summary: Automate your Appian code testing with Python. Boost quality, save time.
5
5
  Author: Dinil Mithra
6
6
  Author-email: dinilmithra@mailme@gmail.com
@@ -53,7 +53,6 @@ ButtonUtils.clickByLabelText(wait, "Sign In")
53
53
  ## Project Structure
54
54
  - `robo_appian/` - Library source code
55
55
  - `docs/` - Documentation and guides
56
- - `examples/` - Example test scripts
57
56
 
58
57
  ## Contributing
59
58
  Contributions are welcome! Please see the [contributing guidelines](CONTRIBUTING.md) or open an issue to get started.
@@ -35,7 +35,6 @@ ButtonUtils.clickByLabelText(wait, "Sign In")
35
35
  ## Project Structure
36
36
  - `robo_appian/` - Library source code
37
37
  - `docs/` - Documentation and guides
38
- - `examples/` - Example test scripts
39
38
 
40
39
  ## Contributing
41
40
  Contributions are welcome! Please see the [contributing guidelines](CONTRIBUTING.md) or open an issue to get started.
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "robo_appian"
3
- version = "0.0.13"
3
+ version = "0.0.14"
4
4
  description = "Automate your Appian code testing with Python. Boost quality, save time."
5
5
  authors = ["Dinil Mithra <dinilmithra@mailme@gmail.com>"]
6
6
  readme = "README.md"
File without changes