Skip to main content

Hello, Rinkt

Opens a public page and reads its heading. Runs in the cloud — nothing to install.

Steps

#ActivityWhat it does
1StartWebBrowserOpen example.com
2GetHtmlElementPropertyRead the page heading
3WriteLinePrint what it found

Workflow

StartWebBrowser("https://example.com")
title = GetHtmlElementProperty("//h1", property="innerText")
WriteLine("The page says: {{ title }}")