Purpose
Retrieve the complete rendered HTML for the Oman Tender Board's In-Process Tenders page.
When to Use
Use when the task requires the full page HTML after opening the public in-process tenders table.
Workflow
- Navigate directly to
https://etendering.tenderboard.gov.om/product/publicDash?viewFlag=InProcessTenderswithwaitUntil: domcontentloaded. - Wait 3 seconds for the asynchronously loaded tenders content.
- In the same browser session, run this evaluator and return its string result:
(() => document.documentElement.outerHTML)();Site-Specific Gotchas
- The in-process view is exposed through the non-obvious
viewFlag=InProcessTendersquery parameter; no homepage visit or card click is needed. - The page content loads asynchronously, so evaluate only after a short delay of about 3 seconds following DOM content load.
- Return
document.documentElement.outerHTML, not onlydocument.body.innerHTML, because the requested result is the full page HTML including the head.
Expected Output
A single string containing the complete rendered HTML document, including the <html>, <head>, and <body> elements.