| name | scitex-hub-cloud |
| description | SciTeX Hub web service integration — health monitoring, web app context, JavaScript evaluation, and browser UI control. Module-level helpers wrap CloudClient. |
| user-invocable | false |
scitex-hub: Cloud Web Service Integration
scitex_hub exposes module-level helpers that wrap
:class:scitex_hub.CloudClient for the most common web-app interactions:
reading context, evaluating JavaScript, and driving the browser UI.
These are re-exported by the umbrella as stx.cloud.get_context,
stx.cloud.eval_js, and stx.cloud.ui_action.
Sub-skills
Setup and Availability
Core API
Integration
Public API Summary
import scitex_hub
scitex_hub.get_version()
scitex_hub.health_check()
scitex_hub.get_context(page="", **kw)
scitex_hub.eval_js(code, timeout=10, **kw)
scitex_hub.ui_action(steps, delay_ms=900, **kw)
Quick Start
import scitex_hub
status = scitex_hub.health_check()
ctx = scitex_hub.get_context()
print(ctx["username"], ctx["actions"])
result = scitex_hub.eval_js("document.title")
scitex_hub.ui_action([
{"action": "click", "selector": "#submit-btn"},
])