watch full video to learn get value from dynamic website using xpath
https://www.youtube.com/watch?v=oySEjR1cdYA&t=1630s
watch full video to learn get value from dynamic website using xpath
https://www.youtube.com/watch?v=oySEjR1cdYA&t=1630s
https://www.youtube.com/watch?v=VJGWjMwqVLg&list=PLwWoMnMnFx2T0A429bsPQoiA49kjUkltK
watch complete video
https://www.youtube.com/watch?v=AV9gRop2nxs&list=PLwWoMnMnFx2SvxWpAQJT4triel5eKDfbR&index=5
Prepare AA from https://www.youtube.com/@aibrahma1150/playlists
1-Read Input data from Excel (Gender Name set, Country)
3-Set Gender, Nameset & Country value in Website
Q=Format string A@B@@C@@@D@@@ like A,B,C,D
how you will do it
Ans =Replace string @ to ,
then replace comma to single comma
2nd Methode
we can use loop to with single replace replace
3rd Methode
we can use regex
==========Question3=============
Q=use of try catch finally
Q= whats the use of throw
R1 RCM Interview Question
-----------------------------------
1-short Introduction
2-Roles and responsibility
3-Education completed year
4-AA 360 Development question
5-Datetime command in AA360
6-how we can get date difference in AA
7-without another script or language?
8-Knowledge of Database
9 Can we use Excel as DB
10-how we can Excel as DB
11-can we perform select Insert update delete in Excel using SQL query
12-how we can call script
13-you have knowledge of script language
14- Which script language you have used?
15. How many variables we can use to call the script
16-how to retrieve variables from the script
17-In Databse what is consistency?
18-where you use? consistency
19-how you can define an input-output variable in AA
20-what is the public and private mode in AA
21-can we see changes in Public mode
22-what is a credential vault?
23-how many variable type in credential
24-consumed* who are credential consumer
Here’s a structured answer guide for your interview questions related to Automation Anywhere A360, scripting, Excel as a DB, variables, and database concepts:
I’m Rakesh Kumar, an RPA professional with over 9 years of experience, specializing in Automation Anywhere A360. I have delivered automation solutions in healthcare, BFSI, and life sciences domains, working with both Indian and international clients.
Requirement gathering and feasibility analysis
Design and development of bots using AA360
Handling exception management and reusable components
Integration with APIs, databases, and Excel
Deployment and maintenance
Mentoring junior developers and ensuring best practices
B.Tech in 2009
MCA in 2012
Q: How do you handle error logging in bots?
A: I use Try-Catch blocks, custom error handler sub-bots, and capture screenshots. Errors are logged with metadata like timestamp, bot name, line number, and exception message.
The DateTime package provides actions like:
Get current date/time
Format date/time
Add/Subtract time
Calculate difference between two dates
Convert date strings to DateTime object
Use the “Calculate Date/Time Difference” action in the DateTime package.
Input: Start Date, End Date, Unit (Days, Hours, etc.)
Output: Stores difference in a variable.
Yes, this is natively supported using DateTime commands — no external scripting is needed.
Yes, I have hands-on experience with SQL Server, MySQL, and using Excel as a data source in AA360. I write queries for CRUD operations and use stored procedures as well.
Yes, using Database package with OLEDB/ODBC connection, Excel can be treated as a database.
Use ODBC DSN or OLEDB connection string
Connect via Database: Connect
Use SQL queries like SELECT * FROM [Sheet1$]
Yes, but:
SELECT
and INSERT
work well
UPDATE
and DELETE
have limited support depending on driver and Excel version
All operations must refer to the sheet name with $
Use Run Script command in Script package, or call a Python, VBScript, or JavaScript via the Execute Script command.
Yes, I’ve used JavaScript, Python, and VBScript inside AA bots.
Primarily JavaScript and Python to handle string manipulation, file operations, or complex logic.
You can pass multiple input variables using the "Input Parameters" section. No fixed limit but practical usage depends on script and memory.
You can return values using the “Output variable” option in script execution. The return value of the script is captured into a bot variable.
Consistency means data integrity is maintained after any transaction. It ensures that all rules (constraints, relations) are preserved.
Consistency is crucial in transaction management, for example when inserting records across multiple related tables. Also used in bot data validations before performing DB insert/update.
In sub-bots, define input/output variables in “Bot Variables” section
Mark the variable as Input or Output based on data flow
Public: Variables are visible in the recorder and logs
Private: Values are masked (like passwords), useful for secure data handling
Yes, public variables’ values can be logged and seen in debug output and log files.
A secure repository in AA360 used to store and manage sensitive data like usernames and passwords. Access controlled via Roles and Policies.
Credential vault supports:
Username
Password
Key-value pairs
Credential consumers are bots or bot runners/users who use credentials stored in the vault. Permissions are controlled by the credential locker policy.