uips-fixtures UiPath.Testing.Activities 25.10.2

19 activities · uips-fixtures catalog v0.3 · generated 2026-04-11T08:33:04Z

Attach Document
UiPath.Testing.Activities.AttachDocument
Testing.Data

Attach Document to the current Test Case in Orchestrator

Arguments

NameDirTypeReqDefaultDescription
FilePath In InArgument<String>
Tags In InArgument<IEnumerable<String>>
ContinueOnError In InArgument<Boolean>
Compare PDF Documents
UiPath.Testing.Activities.ComparePdfDocuments
Testing.Verification

Compares two documents to determine their equivalence while allowing for specific sections to be excluded based on predefined rules.

Arguments

NameDirTypeReqDefaultDescription
BaselinePath In InArgument<UiPath.Platform.ResourceHandling.IResource>
TargetPath In InArgument<UiPath.Platform.ResourceHandling.IResource>
ContinueOnFailure In InArgument<Boolean>
OutputFolderPath In InArgument<String>
RulesList In InArgument<List<UiPath.Testing.Activities.Models.ComparisonRule>>
Differences Out OutArgument<IEnumerable<UiPath.Testing.Activities.Models.Difference>>
Result Out OutArgument<Boolean>
SemanticDifferences Out OutArgument<UiPath.Testing.Activities.Models.SemanticDifferences>
IgnoreIdenticalItems In InArgument<Boolean>
IncludeImages In InArgument<Boolean>
IgnoreImagesLocation In InArgument<Boolean>

Properties

NameKindTypeDescription
ComparisonType property UiPath.Testing.Activities.Models.ComparisonType
InterpretDifferencesWithAutopilot property Boolean
Rules property List<InArgument<UiPath.Testing.Activities.Models.ComparisonRule>>
Compare Text
UiPath.Testing.Activities.CompareText
Testing.Verification

Compares two texts to determine their equivalence while allowing for specific sections to be excluded based on predefined rules.

Arguments

NameDirTypeReqDefaultDescription
BaselineText In InArgument<String>
TargetText In InArgument<String>
OutputFilePath In InArgument<String>
ContinueOnFailure In InArgument<Boolean>
RulesList In InArgument<List<UiPath.Testing.Activities.Models.ComparisonRule>>
WordSeparators In InArgument<String>
Differences Out OutArgument<IEnumerable<UiPath.Testing.Activities.Models.Difference>>
Result Out OutArgument<Boolean>
SemanticDifferences Out OutArgument<UiPath.Testing.Activities.Models.SemanticDifferences>

Properties

NameKindTypeDescription
ComparisonType property UiPath.Testing.Activities.Models.ComparisonType
Rules property List<InArgument<UiPath.Testing.Activities.Models.ComparisonRule>>
InterpretDifferencesWithAutopilot property Boolean
Create Comparison Rule
UiPath.Testing.Activities.CreateComparisonRule
Testing.Verification

Activity that can create a flexible comparison rules designed to match and exclude specific parts of the text during comparison. The rule can use various matching techniques, such as regular expressions (regex) or wildcards. These rules allow the identification of patterns (e.g., dates, IDs, or dynamic content) that should be ignored, improving the accuracy and relevance of the comparison.

Arguments

NameDirTypeReqDefaultDescription
RuleName In InArgument<String>
UsePlaceholder In InArgument<Boolean>
Pattern In InArgument<String>
ContinueOnError In InArgument<Boolean>
ComparisonRule Out OutArgument<UiPath.Testing.Activities.Models.ComparisonRule>

Properties

NameKindTypeDescription
ComparisonRuleType property UiPath.Testing.Activities.Models.ComparisonRuleType
Bulk Add Test Data Queue Items
UiPath.Testing.Activities.BulkAddTestDataQueue
Testing.Test Data Queues

Add test data items to a queue in bulk

Arguments

NameDirTypeReqDefaultDescription
ContinueOnError In InArgument<Boolean>
QueueItemsDataTable In InArgument<Data.DataTable>
QueueName In InArgument<String>
FolderPath In InArgument<String>
TimeoutMs In InArgument<Int32>
Delete Test Data Queue Items
UiPath.Testing.Activities.DeleteTestDataQueueItems
Testing.Test Data Queues

Delete the provided test data queue items

Arguments

NameDirTypeReqDefaultDescription
TestDataQueueItems In InArgument<List<UiPath.Testing.Core.TestDataQueueItem>>
FolderPath In InArgument<String>
TimeoutMs In InArgument<Int32>
ContinueOnError In InArgument<Boolean>
Get Test Data Queue Item
UiPath.Testing.Activities.GetTestDataQueueItem
Testing.Test Data Queues

Get next test data item from a queue

Arguments

NameDirTypeReqDefaultDescription
QueueName In InArgument<String>
FolderPath In InArgument<String>
TimeoutMs In InArgument<Int32>
ContinueOnError In InArgument<Boolean>
Output Out OutArgument<Dictionary<String, Object>>

Properties

NameKindTypeDescription
MarkConsumed property Boolean
Get Test Data Queue Items
UiPath.Testing.Activities.GetTestDataQueueItems
Testing.Test Data Queues

Gets all the items from the specified queue

Arguments

NameDirTypeReqDefaultDescription
QueueName In InArgument<String>
IdFilter In InArgument<String>
Top In InArgument<Nullable<Int32>>
Skip In InArgument<Nullable<Int32>>
FolderPath In InArgument<String>
TimeoutMs In InArgument<Int32>
ContinueOnError In InArgument<Boolean>
TestDataQueueItems Out OutArgument<List<UiPath.Testing.Core.TestDataQueueItem>>

Properties

NameKindTypeDescription
TestDataQueueItemStatus property UiPath.Testing.Activities.TestDataQueues.Enums.TestDataQueueItemStatus
Add Test Data Queue Item
UiPath.Testing.Activities.NewAddTestDataQueueItem
Testing.Test Data Queues

Add test data item to a queue

Arguments

NameDirTypeReqDefaultDescription
QueueName In InArgument<String>
FolderPath In InArgument<String>
TimeoutMs In InArgument<Int32>
ContinueOnError In InArgument<Boolean>

Properties

NameKindTypeDescription
ItemInformation property Dictionary<String, InArgument>
Verify Expression
UiPath.Testing.Activities.VerifyExpression
Testing.Verification

Verifies an expression

Arguments

NameDirTypeReqDefaultDescription
Expression In InArgument<Boolean>
OutputMessageFormat In InArgument<String>
TakeScreenshotInCaseOfSucceedingAssertion In InArgument<Boolean>
TakeScreenshotInCaseOfFailingAssertion In InArgument<Boolean>
ContinueOnFailure In InArgument<Boolean>
AlternativeVerificationTitle In InArgument<String>
Result Out OutArgument<Boolean>
Verify Expression with Operator
UiPath.Testing.Activities.VerifyExpressionWithOperator
Testing.Verification

Verifies 2 expressions with an operator

Arguments

NameDirTypeReqDefaultDescription
FirstExpression In InArgument
SecondExpression In InArgument
OutputMessageFormat In InArgument<String>
TakeScreenshotInCaseOfSucceedingAssertion In InArgument<Boolean>
TakeScreenshotInCaseOfFailingAssertion In InArgument<Boolean>
ContinueOnFailure In InArgument<Boolean>
AlternativeVerificationTitle In InArgument<String>
Result Out OutArgument<Boolean>

Properties

NameKindTypeDescription
Operator property UiPath.Testing.Comparison
Verify Range
UiPath.Testing.Activities.VerifyRange
Testing.Verification

Verify a specified value against a range.

Arguments

NameDirTypeReqDefaultDescription
Expression In InArgument
LowerLimit In InArgument
UpperLimit In InArgument
OutputMessageFormat In InArgument<String>
TakeScreenshotInCaseOfSucceedingAssertion In InArgument<Boolean>
TakeScreenshotInCaseOfFailingAssertion In InArgument<Boolean>
ContinueOnFailure In InArgument<Boolean>
AlternativeVerificationTitle In InArgument<String>
Result Out OutArgument<Boolean>

Properties

NameKindTypeDescription
VerificationType property UiPath.Testing.Activities.VerificationType
Generate Address
UiPath.Testing.Activities.TestData.Address
Testing.Data

Provide random address as dictionary

Arguments

NameDirTypeReqDefaultDescription
AddressResult Out OutArgument<Dictionary<String, String>>
Generate Given Name
UiPath.Testing.Activities.TestData.GivenName
Testing.Data

Provide a random first name

Arguments

NameDirTypeReqDefaultDescription
GivenNameResult Out OutArgument<String>
Generate Last Name
UiPath.Testing.Activities.TestData.LastName
Testing.Data

Provide a random last name

Arguments

NameDirTypeReqDefaultDescription
LastNameResult Out OutArgument<String>
Generate Random Date
UiPath.Testing.Activities.TestData.RandomDate
Testing.Data

Random Date

Arguments

NameDirTypeReqDefaultDescription
MinDate In InArgument<DateTime>
MaxDate In InArgument<DateTime>
Output Out OutArgument<DateTime>
Generate Random Number
UiPath.Testing.Activities.TestData.RandomNumber
Testing.Data

Random Number

Arguments

NameDirTypeReqDefaultDescription
Min In InArgument<Int64>
Max In InArgument<Int64>
Decimals In InArgument<Int32>
Output Out OutArgument<Decimal>
Generate Random String
UiPath.Testing.Activities.TestData.RandomString
Testing.Data

Generate a random string

Arguments

NameDirTypeReqDefaultDescription
Length In InArgument<Int32>
Output Out OutArgument<String>

Properties

NameKindTypeDescription
Case property UiPath.Testing.Enums.Case
Generate Random Value
UiPath.Testing.Activities.TestData.RandomValue
Testing.Data

Picks a random line in range of 0 - 2 billions from a 1-column list provided by the customer as .txt or .csv file

Arguments

NameDirTypeReqDefaultDescription
FilePath In InArgument<String>
Value Out OutArgument<String>