- Erste Schritte
- Für Administrators
- RPA-Workflow-Projekte
- Erstellen eines RPA-Workflows aus einer Idee
- Erstellen eines Projekts
- So starten Sie einen RPA-Workflow
- Verwalten von Projektdateien und -ordnern
- Verbinden von RPA-Workflows mit Ihren Konten
- Konfigurieren von Aktivitäten
- Verwalten der Aktivitäten in einem Projekt
- Übergeben von Werten zwischen Aktivitäten
- Iterieren durch Elemente
- Verwalten der Daten in einem Projekt
- Konfigurieren eines Projekts zur Verwendung Ihrer Daten
- Verwenden von Datei- und Ordnerressourcen
- Lokale Einrichtung für RPA-Workflow- und App-Projekte
- App-Projekte
- Apps in Studio Web
- Entwerfen von App-Projekten
- Debuggen von App-Projekten
- Veröffentlichen, Bereitstellen und Aktualisieren von App-Projekten
- Importieren und Exportieren von App-Projekten
- Arbeiten mit Entitäten in einem App-Projekt
- Erstellen zugänglicher Apps
- Hinzufügen zugänglicher Deskriptoren
- Die Beschriftung „Zugänglich“.
- Verwenden des Registerkartensteuerelements für Barrierefreiheit
- Entwerfen barrierefreier Listen und Überschriften
- reaktionsfähiges App-Design
- Farbkontrastverhältnis
- Legen Sie Stile und Zuordnungen auf Aria-Ebene für das Header-Steuerelement vor
- Bekannte Einschränkungen
- Legen Sie einen externen Kontext mithilfe von Abfrageparametern fest
- Legen Sie einen externen Kontext mithilfe externer Ereignisse fest
- Verwenden Sie Arrays, um Dropdown-Menüs, Dropdown-Menüs mit Mehrfachauswahl und Optionsfeld-Steuerelemente auszufüllen
- Verwenden Sie tabellarische Steuerelemente mit Data Service-Entitäten in App-Projekten
- Integrieren Sie Konversations-Agents
- App-Aktivitäten
- Agent-Prozesse
- Maestro-Fall
- Maestro-Flow
- Agents
- Solutions (Lösungen)
- API-Workflows
- Tests
Coded app project architecture in Studio Web, covering how Studio Web and your local IDE split responsibilities and which files matter at each stage.
A coded app project in Studio Web is a pro-code project that lives inside a solution. Studio Web owns the project's identity and its publish lifecycle. The app's source code is written in your own local project and pushed into Studio Web with the UiPath CLI.
What Studio Web owns and what your IDE owns
| Concern | Owned by Studio Web | Owned by your local IDE |
|---|---|---|
| Project identity inside the solution | ✅ | – |
webAppManifest.json (project type and configuration) | ✅ | – |
Registering bindings from the pushed bindings_v2.json | ✅ | – |
| Solution-level publish and deploy | ✅ | – |
| Read-only view of the last pushed source | ✅ | – |
| Source-code authoring, framework choice, dependencies | – | ✅ |
bindings_v2.json — declaring which Orchestrator resources the app uses | – | ✅ |
| Local dev server, previewing the running app, debugging | – | ✅ |
Files that matter
After initializing the project in Studio Web
Studio Web creates a single file:
| Datei | Zweck |
|---|---|
webAppManifest.json | Describes the project's type (Coded) and configuration. Owned by Studio Web — you don't edit it directly. |
Beispiel:
{
"type": "Coded",
"solutionResourceSubType": "CodedAction",
"config": {
"isCompiled": true,
"isActionApp": true
}
}
{
"type": "Coded",
"solutionResourceSubType": "CodedAction",
"config": {
"isCompiled": true,
"isActionApp": true
}
}
In your local project (what you build and push)
Your local project is whatever your framework of choice produces. Studio Web does not require a specific folder structure; only what you push is stored.
If the app needs UiPath resources at runtime, a bindings_v2.json file at the root of what you push declares those resources. Studio Web reads this file on push and registers each declared resource — see Bindings and runtime resources.
Die nächsten Schritte
Find out more about working with coded app projects: