moved html mocks to html sub folder and updated conftest.py to read from new location with better path and endpoint handling

This commit is contained in:
2026-01-02 18:44:26 +05:30
parent 358abc9b36
commit 390eb22e1b
5 changed files with 7 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
{
"title": "Table Test Page",
"description": "HTML page with a table for parsing tests",
"heading": "Sample Table",
"table_id": "data-table",
"columns": ["Name", "Age", "City"],
"rows": [
["Alice", "30", "London"],
["Bob", "25", "New York"],
["Charlie", "35", "Berlin"]
],
"link_url": "https://example.org/details",
"link_text": "Details"
}