UiPath Documentation
uipath-cli
latest
false
Wichtig :
Dieser Inhalt wurde maschinell übersetzt. Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.

UiPath-CLI-Benutzerhandbuch

UIP-RPA-Legacy-Debugging

uip rpa-legacy debug führt einen XAML-Workflow lokal über UiRobot aus. Es überträgt Protokolle in Echtzeit und gibt bei Erfolg strukturierte Ausgabeargumente oder bei Fehlern Fehlerdetails zurück. Erfordert UiRobot, installiert auf der lokalen Maschine – standardmäßig erkennt das Verb UiRobot.exe automatisch; Übergeben Sie --robot-path zum Überschreiben.

Nur Windows – siehe Übersichtswarnung .

Zusammenfassung

uip rpa-legacy debug <xaml-path> [options]
uip rpa-legacy debug <xaml-path> [options]
  • <xaml-path> (erforderlich) – Der Pfad zur auszuführenden XAML-Workflowdatei.

Optionen

MarkierenBeschreibung
-i, --input <json>Geben Sie Argumente als JSON-Zeichenfolge ein.
--result-path <path>Schreiben Sie das strukturierte Ausführungsergebnis (Ausgabeargumente oder Fehlerdetails) in eine JSON-Datei.
--timeout <seconds>Ausführungstimeout in Sekunden (0 = kein Timeout).
--robot-path <path>Pfad zu UiRobot.exe (Automatisch erkannt, wenn nicht angegeben).

Beispiele

# Run a workflow with no input
uip rpa-legacy debug ./MyProject/Main.xaml

# Pass input arguments inline and write the result to a file
uip rpa-legacy debug ./MyProject/Main.xaml \
    --input '{"invoicePath":"C:/data/inv.pdf"}' \
    --result-path ./run-result.json

# Use an explicit UiRobot path with a 5-minute timeout
uip rpa-legacy debug ./MyProject/Main.xaml \
    --robot-path "C:/Program Files/UiPath/Studio/UiRobot.exe" \
    --timeout 300
# Run a workflow with no input
uip rpa-legacy debug ./MyProject/Main.xaml

# Pass input arguments inline and write the result to a file
uip rpa-legacy debug ./MyProject/Main.xaml \
    --input '{"invoicePath":"C:/data/inv.pdf"}' \
    --result-path ./run-result.json

# Use an explicit UiRobot path with a 5-minute timeout
uip rpa-legacy debug ./MyProject/Main.xaml \
    --robot-path "C:/Program Files/UiPath/Studio/UiRobot.exe" \
    --timeout 300

Siehe auch

  • Zusammenfassung
  • Optionen
  • Beispiele
  • Zugehörig
  • Siehe auch

War diese Seite hilfreich?

Verbinden

Benötigen Sie Hilfe? Support

Möchten Sie lernen? UiPath Academy

Haben Sie Fragen? UiPath-Forum

Auf dem neuesten Stand bleiben