To ensure Blue Prism best practices are followed in respect to naming conventions and layout, the developer should design the object with the following action pages: Launch, Attach, Login, Navigate, and Terminate. Each of these action pages serves a distinct purpose, making the object modular and easier to maintain.
Launch: This action page is used to start the application.
Attach: This action page is used to attach to the running instance of the application.
Login: This action page is used to handle the login process.
Navigate: This action page is used to navigate through different menus or pages within the application.
Terminate: This action page is used to close the application properly.
Option C follows these best practices by including Launch, Attach, Login, Navigate, and Terminate action pages, ensuring the object is well-structured and adheres to naming conventions.
The other options do not fully comply with these best practices:
Option A: Does not include a Terminate action page, which is important for cleanly closing the application.
Option B: Uses "Orders" instead of a more generic "Navigate" and does not include Terminate.
Option D: Similar to Option C but uses "Centrix Data Solutions - Basic Actions" instead of the more specific naming convention "Basic Actions – Centrix 01."
ReferencesRefer to Blue Prism's best practices documentation on Object Design, emphasizing modularity, clear naming conventions, and distinct action pages for different functionalities.
Submit