-
Notifications
You must be signed in to change notification settings - Fork 0
Roadmap
idel fuschini edited this page Jul 24, 2026
·
2 revisions
Transform Idelium into a modern test automation framework with:
- a simple, stable proprietary DSL;
- execution based on W3C WebDriver;
- progressive support for WebDriver BiDi;
- exports and integrations with external ecosystems;
- a modular, testable, and maintainable architecture.
- The language is independent from the browser engine.
- The backend must use open standards: W3C WebDriver first, WebDriver BiDi later.
- The user experience must stay simple for both test authors and maintainers.
- Every DSL feature must have a clear AST representation.
- Every step must be validatable, debuggable, and serializable.
- Epic 1 — Establish the DSL and execution foundations
- Epic 2 — Build the reliable W3C WebDriver execution engine
- Epic 3 — Deliver a stable and expressive DSL v1
- Epic 4 — Add enterprise observability and debugging
- Epic 5 — Enable stable parallel and multi-environment execution
- Epic 6 — Integrate Idelium with modern delivery ecosystems
- Epic 7 — Add optional WebDriver BiDi capabilities
- Epic 8 — Establish packaging, release, and governance
- Define the product scope.
- Establish the DSL grammar.
- Separate parsing, AST, and execution engine responsibilities.
- Versioned DSL specification in a human-readable format.
- Canonical AST.
- Initial parser.
- Minimal runtime for executing basic commands.
- Open page.
- Click.
- Enter text.
- Wait for element.
- Assert visibility/text.
- Navigate forward/back.
- Capture screenshot.
- Handle basic errors.
- A simple script can be parsed and executed end-to-end.
- Syntax errors are clear.
- The AST is stable and serializable as JSON.
- Implement the DSL execution engine.
- Introduce a WebDriver adapter.
- Make the system reliable on Chrome, Firefox, and Edge.
- W3C WebDriver adapter.
- Browser session management.
- Step-by-step execution.
- Structured logging.
- Configurable timeouts.
- Controlled retries for selected actions.
- Explicit waits.
- CSS and XPath selector handling.
- Frame and window handling.
- File upload.
- Download handling.
- Alert handling.
- Screenshot capture on failure.
- Tests run on at least two browsers.
- The engine clearly distinguishes network, locator, and assertion errors.
- Reports show step, duration, and status.
- Make the language readable for non-experts.
- Add high-value constructs.
- Reduce boilerplate.
- Variables.
- String interpolation.
-
ifblocks. - Simple loops.
- Reusable steps/macros.
- Helper functions.
- Advanced assertions.
- Parameters from CLI or files.
- Stable DSL v1 syntax.
- Documentation with examples.
- Basic language linting.
- Human-readable error messages.
- A medium-complexity script can be written without duplicated code.
- The language remains compact but expressive.
- A complete getting-started guide exists.
- Make test failures easy to understand.
- Add execution tracing and artifacts.
- Step-level traces.
- Structured JSON logs.
- Automatic screenshots on failure.
- HTML and JSON reports.
- Artifact export for CI.
- Step timeline.
- Duration per step.
- Locator used.
- Current page.
- Browser session state.
- Run attachments.
- A failure can be diagnosed without opening the test code.
- Reports are readable by both humans and CI systems.
- Prepare Idelium for real team usage.
- Reduce flakiness.
- Support parallel executions.
- Parallel runs.
- Session isolation.
- Setup/teardown hooks.
- Support for different environments.
- Configuration management for development, staging, and production.
- Centralized wait strategy.
- Selector resilience.
- Controlled re-runs only for transient failures.
- Browser/session health checks.
- A suite with multiple tests runs in parallel.
- Results are reproducible.
- Multi-environment configuration is simple.
- Make Idelium a platform, not only a runtime.
- Integrate Idelium with CI/CD and external tools.
- Complete CLI.
- GitHub Actions integration.
- GitLab CI integration.
- JUnit/XML output.
- JSON export for external tooling.
- Plugin API for extensions.
- JSON AST.
- JUnit test results.
- Markdown report.
- HTML report.
- Intermediate debugging script.
- Idelium can run in CI without manual intervention.
- Results are compatible with standard pipeline tools.
- Add modern capabilities beyond classic WebDriver.
- Support browser events, console logs, network observation, and advanced diagnostics.
- Optional BiDi adapter.
- Event listeners.
- Console log capture.
- Network observation.
- Better debugging hooks.
- Tests that listen to browser events.
- Network request validation.
- JavaScript error capture.
- SPA flow diagnostics.
- BiDi is optional but well integrated.
- Advanced features do not break the core WebDriver execution path.
- Make the project adoptable and sustainable.
- Avoid regressions.
- Define a public product version.
- Semantic versioning.
- Automated changelog.
- Release notes.
- Public roadmap.
- Contribution policy.
- Automated regression tests.
- Versioned DSL specification.
- Backward compatibility for existing tests.
- Deprecations with a clear time window.
- RFC process for every major change.
- Every release is repeatable and documented.
- Breaking changes are rare and announced.
- Parser.
- AST.
- Base runtime.
- W3C WebDriver adapter.
- Simple test execution.
- Assertions.
- Timeouts.
- Screenshots.
- Reports.
- CLI.
- Variables.
- Macros/reuse.
- CI integration.
- Parallel runs.
- BiDi.
- Plugin system.
- Advanced exports.
- Future-proof multi-backend architecture.
To be modern today, Idelium should:
- rely on W3C WebDriver as the minimum execution foundation;
- plan WebDriver BiDi as the evolution path;
- avoid being tied to a proprietary IDE format;
- export results and metadata in standard formats;
- keep a proprietary DSL, but make it documented and versioned.
Idelium is a domain-specific test automation framework with a proprietary DSL and a W3C WebDriver execution backend, designed for modern browser automation and extensibility.
Idelium should not become “another Selenium IDE”.
It should become an automation framework with its own readable, modern language and a standards-based execution backend.
Implement in this order:
- DSL spec v1.
- Canonical AST.
- Parser.
- WebDriver runtime.
- CLI.
- Reporting.
- CI.
- BiDi.
Idelium is open source. Contributions, issue reports, and documentation improvements are welcome through the Idelium GitHub repositories.