feat: port selected p1 scenarios to java and python#138
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Ports two selected P1 teaching scenarios beyond the TypeScript stack: Challenging DOM to Java Selenium/TestNG and sortable tables to Python Playwright. Updates the scenario catalog, generated matrix, stack READMEs, and Java regression XML to match the new coverage.
Why
Proposal R19 calls for selective cross-stack ports only where the stack teaches a distinct tradeoff. Java demonstrates legacy UI rescue and Page Object modeling for difficult DOM surfaces, while Python demonstrates concise table data assertions.
Verification
rtk python3 tools/check-scenarios.pyrtk python3 tools/check-scenarios.py --write-matrixwith stabledocs/scenario-matrix.mdhashrtk npx --yes markdownlint-cli2@0.23.0 README.md docs/scenario-matrix.md stacks/java-selenium-testng/README.md stacks/python-playwright/README.mdcd stacks/python-playwright && rtk .venv/bin/ruff format --check . && rtk .venv/bin/ruff check . && rtk .venv/bin/mypy src testsTHE_INTERNET_BASE_URL=http://localhost:7080 rtk .venv/bin/pytest tests/test_sortable_tables.py --browser chromiumrtk docker run --rm -v "$PWD/stacks/java-selenium-testng":/work -w /work -v "$HOME/.m2":/root/.m2 maven:3.9.11-eclipse-temurin-25 mvn -q -DskipTests test-compileChallengingDomTestpassed through local Selenium Grid in DockerOut of scope
No broad P1 parity expansion, dependency updates, or CI workflow changes.