Get In-Process Tenders Page HTML

Site etendering.tenderboard.gov.omTask get-in-process-tenders-htmlVersion v1Updated Jul 22, 2026Category tendering

Navigate directly to the Oman Tender Board in-process tenders view and return the fully rendered page HTML. This skill was captured from a live agent session on etendering.tenderboard.gov.om and publishes here verbatim, exactly as an agent receives it.

NoteSelectors and URL schemes drift as sites change. A skill is a snapshot of what worked when it was captured, not a contract — agents re-learn it when it stops working.

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

  1. Navigate directly to https://etendering.tenderboard.gov.om/product/publicDash?viewFlag=InProcessTenders with waitUntil: domcontentloaded.
  2. Wait 3 seconds for the asynchronously loaded tenders content.
  3. 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=InProcessTenders query 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 only document.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.

Call it

GET https://production-sfo.browserless.io/skills?token=TOKEN-HERE&domain=etendering.tenderboard.gov.om&task=get-in-process-tenders-html