robotframework-apex 0.0.0__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.
Files changed (32) hide show
  1. robotframework_apex-0.0.0/LICENSE +21 -0
  2. robotframework_apex-0.0.0/PKG-INFO +36 -0
  3. robotframework_apex-0.0.0/README.md +11 -0
  4. robotframework_apex-0.0.0/pyproject.toml +40 -0
  5. robotframework_apex-0.0.0/pyproject.toml.orig +43 -0
  6. robotframework_apex-0.0.0/src/BrowserApex/__init__.py +3 -0
  7. robotframework_apex-0.0.0/src/BrowserApex/browser.py +547 -0
  8. robotframework_apex-0.0.0/src/BrowserApex/cli/__init__.py +0 -0
  9. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/__init__.py +4 -0
  10. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/apexlang-26.1.peg +381 -0
  11. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/ebnf/apexlang-26.1.ebnf +11743 -0
  12. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/grammar.py +928 -0
  13. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/objects.py +291 -0
  14. robotframework_apex-0.0.0/src/BrowserApex/cli/apex/reader.py +189 -0
  15. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/__init__.py +5 -0
  16. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/config.py +19 -0
  17. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/dump.py +23 -0
  18. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/generate.py +182 -0
  19. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/parse.py +25 -0
  20. robotframework_apex-0.0.0/src/BrowserApex/cli/commands/show.py +63 -0
  21. robotframework_apex-0.0.0/src/BrowserApex/cli/main.py +24 -0
  22. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/custom-settings.template +1 -0
  23. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/keywords.template +1 -0
  24. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/pageobject.template +12 -0
  25. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/pageobjects-resource.template +3 -0
  26. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/rfapex.toml.template +3 -0
  27. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/settings.template +2 -0
  28. robotframework_apex-0.0.0/src/BrowserApex/cli/templates/variables.template +9 -0
  29. robotframework_apex-0.0.0/src/BrowserApex/cli/utils.py +41 -0
  30. robotframework_apex-0.0.0/src/BrowserApex/keywords/__init__.py +0 -0
  31. robotframework_apex-0.0.0/src/BrowserApex/keywords/commands.py +0 -0
  32. robotframework_apex-0.0.0/src/BrowserApex/version.py +1 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Maurice Koster
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: robotframework-apex
3
+ Version: 0.0.0
4
+ Summary: Robot Framework Browser extension library supporting Oracle APEX application using Page Object Model.
5
+ Author: Maurice Koster
6
+ Author-email: Maurice Koster <maurice@mauricekoster.com>
7
+ License-Expression: MIT
8
+ License-File: LICENSE
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Topic :: Software Development :: Testing
13
+ Classifier: Framework :: Robot Framework
14
+ Classifier: Framework :: Robot Framework :: Library
15
+ Requires-Dist: robotframework>=7.1.1,<9.0.0
16
+ Requires-Dist: robotframework-browser>=20.0.0,<21.0.0
17
+ Requires-Dist: pyyaml>=6.0.3
18
+ Requires-Dist: rich>=15.0.0
19
+ Requires-Dist: typer>=0.26.8
20
+ Requires-Dist: jinja2>=3.1.6
21
+ Requires-Dist: python-dotenv
22
+ Requires-Dist: parsimonious>=0.11.0
23
+ Requires-Python: >=3.10
24
+ Description-Content-Type: text/markdown
25
+
26
+ # robotframework-apex
27
+ Supporting library to control Oracle APEX applications usin Page Object Model
28
+
29
+
30
+ ## Apex library
31
+
32
+ Depends on Browser library `robotframework-browser`
33
+
34
+
35
+ ## rfapex command line tool
36
+
@@ -0,0 +1,11 @@
1
+ # robotframework-apex
2
+ Supporting library to control Oracle APEX applications usin Page Object Model
3
+
4
+
5
+ ## Apex library
6
+
7
+ Depends on Browser library `robotframework-browser`
8
+
9
+
10
+ ## rfapex command line tool
11
+
@@ -0,0 +1,40 @@
1
+ [build-system]
2
+ requires = ["uv_build>=0.12.7,<0.13"]
3
+ build-backend = "uv_build"
4
+
5
+ [tool.uv.build-backend]
6
+ module-name = "BrowserApex"
7
+
8
+ [project]
9
+ name = "robotframework-apex"
10
+ version = "0.0.0"
11
+ dependencies = [
12
+ "robotframework >= 7.1.1, < 9.0.0",
13
+ "robotframework-browser >= 20.0.0, < 21.0.0",
14
+ "PyYAML >= 6.0.3",
15
+ "rich >= 15.0.0",
16
+ "typer >= 0.26.8",
17
+ "Jinja2 >= 3.1.6",
18
+ "python-dotenv",
19
+ "parsimonious>=0.11.0",
20
+ ]
21
+ requires-python = ">= 3.10"
22
+ description = "Robot Framework Browser extension library supporting Oracle APEX application using Page Object Model."
23
+ readme = "README.md"
24
+ license = "MIT"
25
+ license-files = ["LICENSE"]
26
+ classifiers = [
27
+ "Development Status :: 5 - Production/Stable",
28
+ "Operating System :: OS Independent",
29
+ "Programming Language :: Python :: 3",
30
+ "Topic :: Software Development :: Testing",
31
+ "Framework :: Robot Framework",
32
+ "Framework :: Robot Framework :: Library",
33
+ ]
34
+
35
+ [[project.authors]]
36
+ name = "Maurice Koster"
37
+ email = "maurice@mauricekoster.com"
38
+
39
+ [project.scripts]
40
+ apexcli = "BrowserApex.cli.main:main"
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["uv_build>=0.12.7,<0.13"]
3
+ build-backend = "uv_build"
4
+
5
+ [tool.uv.build-backend]
6
+ module-name = "BrowserApex"
7
+
8
+ [project]
9
+ name = "robotframework-apex"
10
+
11
+ version = "0.0.0"
12
+ dependencies = [
13
+ "robotframework >= 7.1.1, < 9.0.0",
14
+ "robotframework-browser >= 20.0.0, < 21.0.0",
15
+ "PyYAML >= 6.0.3",
16
+ "rich >= 15.0.0",
17
+ "typer >= 0.26.8",
18
+ "Jinja2 >= 3.1.6",
19
+ "python-dotenv",
20
+ "parsimonious>=0.11.0",
21
+ ]
22
+ requires-python = ">= 3.10"
23
+ authors = [
24
+ { name = "Maurice Koster", email = "maurice@mauricekoster.com" },
25
+ ]
26
+ description = "Robot Framework Browser extension library supporting Oracle APEX application using Page Object Model."
27
+ readme = "README.md"
28
+ license = "MIT"
29
+ license-files = [
30
+ "LICENSE",
31
+ ]
32
+ classifiers = [
33
+ "Development Status :: 5 - Production/Stable",
34
+ "Operating System :: OS Independent",
35
+ "Programming Language :: Python :: 3",
36
+ "Topic :: Software Development :: Testing",
37
+ "Framework :: Robot Framework",
38
+ "Framework :: Robot Framework :: Library",
39
+ ]
40
+
41
+ [project.scripts]
42
+ apexcli = "BrowserApex.cli.main:main"
43
+
@@ -0,0 +1,3 @@
1
+ from .version import __VERSION__
2
+
3
+ from .browser import BrowserApex