Hello, Rinkt
Opens a public page and reads its heading. Runs in the cloud — nothing to install.
Steps
| # | Activity | What it does |
|---|---|---|
| 1 | StartWebBrowser | Open example.com |
| 2 | GetHtmlElementProperty | Read the page heading |
| 3 | WriteLine | Print what it found |
Workflow
StartWebBrowser("https://example.com")
title = GetHtmlElementProperty("//h1", property="innerText")
WriteLine("The page says: {{ title }}")