Skip to main content

Hello, Rinkt (broken)

The same flow with a selector that matches nothing, so you can see what a failure looks like and fix it.

Steps

#ActivityWhat it does
1StartWebBrowserOpen example.com
2GetHtmlElementPropertyRead a heading that is not there
3WriteLinePrint what it found

Workflow

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