UiPath Advanced RPA Developer (UiARD) — Question 9
A developer used <title=’FileName - ACME Application’> as an attribute of a selector. Part of the name of the application window changes dynamically based on the file name. If the developer wants the selector to identify any file in this application window, how should the attribute be modified?
Answer options
- A. <title=’* - ACME Application’>
- B. <title=’# - ACME Application’>
- C. <title=’? - ACME Application’>
- D. <title=’ - ACME Application’>
Correct answer: A
Explanation
The correct answer is A, as using '*' allows for any string to match before the static part of the title. Options B and C use symbols that do not represent a wildcard match in this context, and option D would not match any specific file name since it omits the wildcard character.