I’m experiencing an issue with OpenRPA when piping input from PowerShell. If the input object contains an array, the command fails.
I use the following command: $robotInput | Invoke-OpenRPA -Filename 87abf7fd-66cf-46cc-83d7-9a19086a8ce9
I’ve tried multiple ways to define $robotInput, but all of them fail:
$robotInput = @{“PROsArray” = @(“Flores, Beatriz”, “Nuno, Lilibeth”)}
$robotInput = @{“PROsArray” = [System.String]@(“Flores, Beatriz”, “Nuno, Lilibeth”)}
$robotInput = @{“PROsArray” = {“Flores, Beatriz”, “Nuno, Lilibeth”}}
$robotInput = @{“PROsArray” = [System.String]@(“Flores, Beatriz”, “Nuno, Lilibeth”)} | ConvertTo-Json -Depth 10
Regardless of the approach, I receive errors related to JSON serialization or Newtonsoft.Json.Linq.JArray
or Error reading JObject from JsonReader. Current JsonReader item is not an object: String. Path