robotframework-dialogsplus 0.1.0__tar.gz → 0.1.1__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.
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/PKG-INFO +7 -2
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/README.md +6 -1
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/atests/testing.robot +26 -7
- robotframework_dialogsplus-0.1.1/docs/DialogsPlus.html +410 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/pyproject.toml +1 -1
- robotframework_dialogsplus-0.1.1/src/DialogsPlus/dialogsplus.py +183 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/utils/config.py +1 -1
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/widgets/base.py +3 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/widgets/styling.py +19 -1
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/widgets/wrappers.py +22 -10
- robotframework_dialogsplus-0.1.1/uv.lock +123 -0
- robotframework_dialogsplus-0.1.0/src/DialogsPlus/dialogsplus.py +0 -90
- robotframework_dialogsplus-0.1.0/uv.lock +0 -291
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/.gitignore +0 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/.python-version +0 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/atests/config.yaml +0 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/__init__.py +0 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/py.typed +0 -0
- {robotframework_dialogsplus-0.1.0 → robotframework_dialogsplus-0.1.1}/src/DialogsPlus/widgets/assets/robot.ico +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotframework-dialogsplus
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: A drop-in enhancement for Robot Framework's Dialogs library with modern UI and extended user interaction keywords.
|
|
5
5
|
Author-email: Alpha-Centauri-00 <Alpha@Centauri.c0m>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -32,6 +32,11 @@ A drop-in enhancement for Robot Framework's Dialogs library with modern UI and e
|
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
+
## 📚 Keyword Documentation
|
|
35
36
|
|
|
37
|
+
👉 View DialogsPlus Keyword [Docs](https://alpha-centauri-00.github.io/DialogsPlus/DialogsPlus.html)
|
|
36
38
|
|
|
37
|
-
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
Pull requests are welcome! More info coming soon.
|
|
@@ -20,6 +20,11 @@ A drop-in enhancement for Robot Framework's Dialogs library with modern UI and e
|
|
|
20
20
|
|
|
21
21
|
---
|
|
22
22
|
|
|
23
|
+
## 📚 Keyword Documentation
|
|
23
24
|
|
|
25
|
+
👉 View DialogsPlus Keyword [Docs](https://alpha-centauri-00.github.io/DialogsPlus/DialogsPlus.html)
|
|
24
26
|
|
|
25
|
-
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
Pull requests are welcome! More info coming soon.
|
|
@@ -22,7 +22,10 @@ Log Test Case Name
|
|
|
22
22
|
*** Test Cases ***
|
|
23
23
|
|
|
24
24
|
Get Value From User Default
|
|
25
|
-
${result} Get Value From User
|
|
25
|
+
${result} Get Value From User Input
|
|
26
|
+
... prompt=Enter your name:
|
|
27
|
+
... default=Robot framework
|
|
28
|
+
|
|
26
29
|
Should Be Equal ${result} Robot framework
|
|
27
30
|
|
|
28
31
|
Run Manual Steps Executes
|
|
@@ -50,12 +53,18 @@ Get Multi Value Multiple Fields
|
|
|
50
53
|
|
|
51
54
|
Choose Single XML File
|
|
52
55
|
${XML_FILETYPES} Evaluate [("xml files", "*.xml")]
|
|
53
|
-
${result}= Choose File
|
|
56
|
+
${result}= Choose File
|
|
57
|
+
... message=Select Single XML File
|
|
58
|
+
... filetypes=${XML_FILETYPES}
|
|
59
|
+
|
|
54
60
|
Should Contain ${result} .xml
|
|
55
61
|
|
|
56
62
|
Choose Multiple HTML Files
|
|
57
63
|
${HTML_FILETYPES} Evaluate [("HTML", "*.html")]
|
|
58
|
-
${result}= Choose File
|
|
64
|
+
${result}= Choose File
|
|
65
|
+
... message=Select Multiple HTML Files
|
|
66
|
+
... filetypes=${HTML_FILETYPES} multiple=True
|
|
67
|
+
|
|
59
68
|
Should Contain ${result}[0] .html
|
|
60
69
|
|
|
61
70
|
Choose Folder Test
|
|
@@ -63,11 +72,17 @@ Choose Folder Test
|
|
|
63
72
|
Directory Should Exist ${result}
|
|
64
73
|
|
|
65
74
|
Single Ceckbox Test
|
|
66
|
-
${r} Confirm With Checkbox
|
|
75
|
+
${r} Confirm With Checkbox
|
|
76
|
+
... message=Do you accept the terms?
|
|
77
|
+
... checkbox_text=I accept, no matter what!
|
|
78
|
+
|
|
67
79
|
Should Be True ${r}
|
|
68
80
|
|
|
69
81
|
Select Many Checkbox Test
|
|
70
|
-
${r} Select Options With Checkboxes
|
|
82
|
+
${r} Select Options With Checkboxes
|
|
83
|
+
... message=Select as much as you want
|
|
84
|
+
... options=${fields_val}
|
|
85
|
+
|
|
71
86
|
Should Not Be True ${r}[username]
|
|
72
87
|
Should Not Be True ${r}[password]
|
|
73
88
|
Should Not Be True ${r}[email]
|
|
@@ -75,13 +90,17 @@ Select Many Checkbox Test
|
|
|
75
90
|
|
|
76
91
|
Select Many Checkbox With Defaults Test
|
|
77
92
|
@{Contacts} Create List Email SMS Phone Slack Discord
|
|
93
|
+
@{Selected_Defaults} Create List Email SMS
|
|
78
94
|
${selected}= Select Options With Checkboxes
|
|
79
95
|
... message=Choose your preferences
|
|
80
96
|
... options=${Contacts}
|
|
81
|
-
... defaults
|
|
97
|
+
... defaults=@{Selected_Defaults} # Default Selected!
|
|
82
98
|
|
|
83
99
|
Should Be True ${selected}[Email]
|
|
84
100
|
Should Be True ${selected}[SMS]
|
|
85
101
|
Should Not Be True ${selected}[Phone]
|
|
86
102
|
Should Not Be True ${selected}[Slack]
|
|
87
|
-
Should Not Be True ${selected}[Discord]
|
|
103
|
+
Should Not Be True ${selected}[Discord]
|
|
104
|
+
|
|
105
|
+
Pause The Test
|
|
106
|
+
Pause Test Execution message=Check If System Is Running!
|