资源说明:根据文档,保证可以在45题中答对百分之七十。实验通过人数过百。
一下为其中部分题目:
1. Which activity can you use if you want to loop through a collection of items?
2. What type of content can you store inside a Generic type variable?
3. What is TimeoutMS property used for?
4. What activity can you use to get a column value from a specific row of a DataTable?
5. How can we make sure that an app is in a certain state in a Citrix environment?
6. What happens if you send “123[k(enter)]” by using Type Into activity with the SimulateType property selected?
7. Which activities can be used to interact with the user?
8. How can UiPath identify an UI element on the screen?
9. How can you install and update activity packs?
10. What recording wizard would you use to generate partial selectors?
11. What is UiExplorer used for?
12. How can a string variable called myString be converted to an all-capitals representation for future use?
13. When should you use the Flowchart workflow?
14. How can you trigger another workflow from within your current one?
15. As a best practice, how should workflows use a local desktop application?
16. The Read PDF with OCR activity will throw an error if the following is not specified:
17. Is it possible to make an image automation if you are not in a Citrix environment?
18. When is it recommended to use containers?
19. What happens if the AddHeaders option is checked in the Read Range Activity?
20. How should you organize your workflow?
21. What activities can be used to interact with applications in a Citrix environment?
22. How does UiPath recognize elements on screen?
23. Which of the following text scraping methods preserve the text position?
24. By using the Full Text scraping method, the robot is able to:
25. What is a wildcard used for?
26. What are the supported wildcard characters for selectors in UiPath Studio?
27. What kind of workflow should you create to define business rules?
28. What is an argument?
29. Given two Generic variables, A with value “123” and B with value 456, what would the Write Line output of A + B be?
30. How can you find all anchor elements in a web page?
31. What activity should you use if you want to add data to an existing .xlsx document?
32. Which activity should you use to Click on a specified text in a Citrix Environment?
33. Can you insert a Flowchart activity in a Sequence activity?
34. Which of the following is a valid full selector?
35. The most important advantages of the FullText method are:
36. What is the Attach Window activity used for?
37. What happens if you put a Breakpoint on a Click activity and start the workflow in Debug mode?
38. What should you use to scrape tables from a web page?
39. Can you hover the mouse over a specific UI Element?
40. The Save Attachments activity can save all the attachments of an email to:
41. Where can you find the value written by the Write Line activity?
42. How do you exit the selection mode?
43. Getting the content of a PDF document is possible:
44. What should you use to click in a hidden IE browser?
45. Which recording profile generates full selectors?
【UiPath Level 1知识点详解】
1. 循环遍历集合时,可以使用的活动是“For Each”或“Foreach Loop”。
2. 在Generic类型的变量中,你可以存储任何类型的数据,包括字符串、整数、对象等。
3. TimeoutMS属性通常用于设置一个活动等待特定事件或操作发生的时间限制。
4. 从DataTable的特定行获取列值,可以使用“Data Table Read Row”活动。
5. 在Citrix环境中确保应用程序处于特定状态,可以使用“App WaitFor”或“Window Wait”活动。
6. 如果使用Type Into活动并选中SimulateType属性发送“123[k(enter)]”,机器人将模拟键盘输入,包括数字、键位和回车。
7. 与用户交互的活动包括“Message Box”、“Input Dialog”和“Show Confirmation”等。
8. UiPath通过UI元素的属性(如控件名称、类名、坐标等)来识别屏幕上的UI元素。
9. 安装和更新活动包可以通过UiPath Assistant或在UiPath Studio中管理包选项进行。
10. 生成部分选择器时,可以使用“Element Recorder”。
11. UiExplorer用于手动查找和捕获UI元素的属性,以便于构建选择器。
12. 要将字符串变量myString转换为全大写,可以使用“Transform Text”活动的“ToUpper”方法。
13. 使用Flowchart工作流的情况通常是在需要分支决策或流程复杂时。
14. 在当前工作流中触发另一个工作流,可以使用“Start Workflow”活动。
15. 最佳实践建议工作流通过“App Connect”或“Attach Window”与本地桌面应用交互。
16. Read PDF with OCR活动必须指定PDF文件路径,否则会报错。
17. 不在Citrix环境中也可以实现图像自动化,但可能需要使用更复杂的定位技术。
18. 当需要管理多个相互独立的子任务时,推荐使用容器(如Sequence、Parallel和Loop)。
19. 在Read Range活动中勾选AddHeaders,将在读取数据时添加列标题。
20. 工作流应按照逻辑顺序组织,并使用注释清晰标识各个步骤。
21. 在Citrix环境中与应用交互可使用“App Click”、“App Type”等活动。
22. UiPath通过屏幕上的元素的坐标、大小和属性来识别屏幕上的元素。
23. 保留文本位置的文本抓取方法是“Full Text”和“Region”。
24. 使用Full Text方法,机器人能够识别并提取屏幕上的完整文本内容。
25. 通配符用于模糊匹配,如在选择器中使用。
26. UiPath Studio支持的选择器通配符包括星号(*)和问号(?)。
27. 定义业务规则通常创建Workflow Decision或Flowchart工作流。
28. 参数是传递给工作流或活动的数据输入。
29. 如果变量A的值为"123",变量B的值为456,A + B的结果将是"123456"。
30. 要找到网页中的所有锚点元素,可以使用XPath选择器,如“//a”。
31. 向现有.xlsx文档添加数据,可以使用“Write Cell”或“Write Range”活动。
32. 在Citrix环境中点击指定文本,可以使用“App Click Text”活动。
33. 可以在Sequence活动中插入Flowchart活动,实现子流程。
34. 有效的全选择器可能是“#windowName > div.someClass”。
35. FullText方法的主要优点是准确性高、后台运行、速度快且支持Citrix环境。
36. Attach Window活动用于指定与之交互的顶级窗口容器。
37. 设置了断点的Click活动在调试模式下运行,工作流会在到达该活动时暂停,等待用户继续。
38. 从网页中抓取表格数据,可以使用“Data Scraping”活动。
39. 可以使用“Hover Text”活动将鼠标悬停在特定UI元素上。
40. Save Attachments活动可以将电子邮件的所有附件保存到绝对路径。
41. Write Line活动输出的值可以在Output面板查看。
42. 退出选择模式可以按ESC键。
43. 通过Read PDF Text活动可以获取PDF文档的内容。
44. 针对隐藏的IE浏览器,可以使用“SimulateClick”活动进行点击。
45. 生成全选择器的记录模式是“Step by Step Recording”。
本源码包内暂不包含可直接显示的源代码文件,请下载源码包。