Skip to content

This project is my solution in C# to the Switch practice found in section 02 practice 03 of the UiPath - RPA Developer Foundation course.

License

Notifications You must be signed in to change notification settings

ShonHarsh/RPADev-S02P03-Switch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UiPath

S02P03 Switch

This project is my solution in C# to the Switch practice found in section 02 practice 03 of the UiPath - RPA Developer Foundation course.

Getting Started

After making a pull request or downloading the project, open the Main.xaml in UiPath Studio. The robot can be run with the play button in the ribbon and the result can be seen in output panel.

Practice Requirements

Separate a collection of error codes using Switch

Considering a collection of error codes stored in an Array of Strings, separate them based on their type of error code ("Ax", "Bx" or "Cx") and store them in 3 different arrays.

Note: The initial Array should contain the following values:

{"Ax001", "Ax002", "Ax003", "Ax004", "Ax005", "Bx001", "Bx002", "Bx003", "Cx001", "Cx002", "Cx003", "Cx004", "Dx314", "BadError"}

Details

Course: UiPath - RPA Developer Foundation

Section: 02 Variables, Data Types And Control Flow In Studio

Practice: 03 Switch

Project Format: Windows, C#

GitHub: https://github.com/ShonHarsh/RPADev-S02P03-Switch

Sample Output

04/02/2024 12:41:42 => [Info] RPADev-S02P03-Switch execution started
04/02/2024 12:41:42 => [Warning] RPADev-S02P03-Switch.Main.Switch.Default; An unhandled error code was encountered. Error Code: Dx314
04/02/2024 12:41:42 => [Warning] RPADev-S02P03-Switch.Main.Switch.Default; An unhandled error code was encountered. Error Code: BadError
04/02/2024 12:41:42 => [Info] RPADev-S02P03-Switch.Main.ErrorCodes.Ax;
Ax001
Ax002
Ax003
Ax004
Ax005
04/02/2024 12:41:42 => [Info] RPADev-S02P03-Switch.Main.ErrorCodes.Bx;
Bx001
Bx002
Bx003
04/02/2024 12:41:42 => [Info] RPADev-S02P03-Switch.Main.ErrorCodes.Cx;
Cx001
Cx002
Cx003
Cx004
04/02/2024 12:41:42 => [Info] RPADev-S02P03-Switch execution ended in: 00:00:00

```sh

### Architecture Requirements

A standard UiPath, Studio to Orchestrator cloud setup is the base of operation.  It is easy to setup and free.
1. An Orchestrator connection - Visit https://cloud.uipath.com/ and authenticate or sign up.
2. [UiPath Studio](https://www.uipath.com/product/studio) is used to run the robot.  Note that Studio Web can be used directly in Orchestrator but I recommend installing the Studio IDE application.

[![UiPath Setup Guide](https://shonharsh.github.io/curriculum-vitae/images/Title-UiPath-Setup-Guide.png)](https://github.com/ShonHarsh/UiPath-SetupGuide)

### Git Notes

Clone the project to develop or change it.

```sh
git clone https://github.com/ShonHarsh/RPADev-S02P03-Switch

Links

RPA Developer Foundation Sections

  1. Get Started With RPA Development

  2. Variables, Data Types And Control Flow In Studio

    P01 RPADev-S02P01-ForEachIfStatement [C#] [VB] [Windows Legacy]

    P02 RPADev-S02P02-GenericValue [C#] [VB] [Windows Legacy]

    P03 RPADev-S02P03-Switch [C#] [VB] [Windows Legacy]

  3. Data Manipulation In Studio

    P01 RPADev-S03P01-Lists [C#] [VB] [Windows Legacy]

    P02 RPADev-S03P03-Dictionaries-Integers [C#] [VB] [Windows Legacy]

    P03 RPADev-S03P04-Dictionaries-Doubles [C#] [VB] [Windows Legacy]

    P04 RPADev-S03P05-InputValidation [C#] [VB] [Windows Legacy]

    P05 RPADev-S03P06-ReplacingPlaceholders [C#] [VB] [Windows Legacy]

    P06 RPADev-S03P07-ExtractEmailAddress [C#] [VB] [Windows Legacy]

    P07 RPADev-S03P08-ExtractEmailAddressRegEx [C#] [VB] [Windows Legacy]

  4. Excel And Data Tables With Studio

    P01 RPADev-S04P01-CalculatingSums [C#] [VB] [Windows Legacy]

    P02 RPADev-S04P02-CalculatingLossInvoices [C#] [VB] [Windows Legacy]

    P03 RPADev-S04P03-CalculatingPercentagesOfExpenses [C#] [VB] [Windows Legacy]

  5. UI Automation With Studio

    P01 RPADev-S05P01-PasswordGenerator [C#] [VB] [Windows Legacy]

    P02 RPADev-S05P02-TheRPAChallenge [C#] [VB] [Windows Legacy]

    P03 RPADev-S05P03-InputActions [C#] [VB] [Windows Legacy]

    P04 RPADev-S05P04-OutputActions [C#] [VB] [Windows Legacy]

    P05 RPADev-S05P05-DataScraping [C#] [VB] [Windows Legacy]

  6. Selectors In Studio

    P01 RPADev-S06P01-GetAndSortData [C#] [VB] [Windows Legacy]

    P02 RPADev-S06P02-SetData [C#] [VB] [Windows Legacy]

    P03 RPADev-S06P03-Highlight-TypeItems [C#] [VB] [Windows Legacy]

  7. Project Organization In Studio

    P02 RPADev-S07P02-StateMachines [C#] [VB] [Windows Legacy]

    P03 RPADev-S07P03-FixMyWorkflow [C#] [VB] [Windows Legacy]

    P04 RPADev-S07P04-Libraries [C#] [VB] [Windows Legacy]

  8. Error And Exception Handling In Studio

  9. Debugging In Studio

  10. PDF Automation In Studio

  11. Email Automation With Studio

  12. Orchestrator For RPA Developers

  13. Robotic Enterprise Framework Overview