I get the error:
connectorPowerFxErrorEvaluating PowerFx expression resulted in error while invoking the connector : PVA.GetPageContent failed: JsonReaderException '<' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0.

connectorPowerFxErrorEvaluating PowerFx expression resulted in error while invoking the connector : PVA.GetPageContent failed: JsonReaderException '<' is an invalid start of a value. LineNumber: 0 | BytePositionInLine: 0.
The issue here is a content-type mismatch—the problem isn't with the tool itself. PVA.GetPageContent returns HTML (the first byte is <, indicating <html> or <div>), while the tool binding expects JSON. As a result, the deserializer fails immediately.
Possible solutions:
Check the agent's run history to confirm the raw response starts with <, verifying it's HTML before updating the binding.
If you found the information above helpful, I would appreciate it if you could share your feedback.