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
| # | Activity | What it does |
|---|---|---|
| 1 | StartWebBrowser | Open example.com |
| 2 | GetHtmlElementProperty | Read a heading that is not there |
| 3 | WriteLine | Print what it found |
Workflow
StartWebBrowser("https://example.com")
title = GetHtmlElementProperty("//h2", property="innerText")
WriteLine("The page says: {{ title }}")