[转]UiPath Keyboard Shortcuts
本文转自:https://docs.uipath.com/studio/docs/keyboard-shortcuts
The complete list of keyboard shortcuts for UiPath Studio:
File Management
Ctrl + Shift + N - Creates a new Blank Process.
Ctrl + O - Enables you to open a previously created workflow, either the .xaml
or project.json
file.
Ctrl + L - Opens the folder where the Log files are stored.
Ctrl + S - Saves the currently opened workflow.
Ctrl + Shift + S - Saves all the workflows that are currently open.
Ctrl + Tab - Moves focus between workflows opened in the Designer panel. Upon pressing the shortcut, the following window appears, allowing you to select between active files and panels in Studio.
Comment
Ctrl + D - Ignores the activity that is currently selected by placing it into a Comment Out container.
Ctrl + E - Removes the activity from the Comment Out container it was placed in.
Debugging
F7 - Runs the currently opened workflow in debug mode.
F8 - Checks the currently opened workflow for validation errors.
F9 - Marks the selected activity with a breakpoint.
Shift + F9 - Removes all the breakpoints in the currently opened workflow.
F11 - When debugging, enables you to step into a block of activities and executes the first one.
Shift + F11 - When debugging, steps over the execution of a block of activities in the currently selected workflow.
Recording
Alt + Ctrl + W - Opens the Web Recording toolbar.
Alt + Ctrl + B - Opens the Basic Recording toolbar.
Alt + Ctrl + C - Opens the Citrix Recording toolbar.
Alt + Ctrl + D - Opens the Desktop Recording toolbar.
F2 - Adds delay during a recording activity.
F3 - Lets you specify a custom recording region.
F4 - Lets you choose the UI Framework to record, which can be Default, AA, and UIA.
Workflow Execution
F5 - Runs the workflow that is currently open.
Pause - Pauses the execution of the current workflow, in both normal and debug mode.
F12 - Stops the execution of the current workflow, in both normal and debug mode.
Selected Activity
Ctrl + T - Places the activity inside the Try section of a Try Catch activity.
Ctrl + N - Creates a new Sequence Diagram in the current project.
Ctrl + C - Copies the selected activity or activities to the clipboard.
Ctrl + V - Pastes the copied activity or activities inside the selected item.
Ctrl + K - Creates an variable of the same type as the required type of the activity.
Ctrl + M - Creates an In argument of the same type as the required type of the activity.
Ctrl + Shift + M - Creates an Out argument of the same type as the required type of the activity.
Ctrl + Space - Opens the IntelliPrompt window.
Miscellaneous
F1 - Enables you to access a help topic associated with the currently selected element.
Ctrl + Alt + F - Sets the focus to the search box in the Activities panel to search for an activity.
Ctrl + P - Opens the Manage Packages window.
Esc - Closes the Publish, Manage Packages, File Diff windows.
[转]UiPath Keyboard Shortcuts的更多相关文章
- Mousetrap - Keyboard shortcuts in Javascript
Mousetrap is a simple library for handling keyboard shortcuts in Javascript. It is around 2kb minifi ...
- OS X: Keyboard shortcuts
Using keyboard shortcuts To use a keyboard shortcut, press a modifier key at the same time as a char ...
- [No0000113]Keyboard shortcuts for Windows Visual Studio Code
General 常用Ctrl+Shift+P, F1 Show Command Palette 显示命令行Ctrl+P Quick Open, Go to File… 快速打开Ctrl+Shift+N ...
- keyboard shortcuts & Xcode 10
keyboard shortcuts & Xcode 10 Xcode Keyboard Shortcuts https://swifteducation.github.io/assets/p ...
- MBP 2018 & Mac keyboard shortcuts
MBP 2018 & Mac keyboard shortcuts https://support.apple.com/en-us/HT201236 delete key === Contro ...
- Google Chrome Keyboard Shortcuts
Navigation To do this Press this Open a new window Ctrl + N Open a new tab Ctrl + T Open a new windo ...
- [转]33 useful Keyboard Shortcuts for Run commond
原文: http://www.shortcutworld.com/en/win/Run-command.html 1. Calling Run CommandWin + r ...
- SQL Server Management Studio Keyboard shortcuts
一些平时在SQL Server Management Studio 使用到的快捷键 F5 (Ctrl+x)执行选中部分的语句,没有选中则全文执行 Ctrl+L 现实执行计划(估计) Ctrl+M 在运 ...
- RStudio Keyboard Shortcuts
Console Description Windows & Linux Mac Move cursor to Console Ctrl+2 Ctrl+2 Clear console Ctrl+ ...
随机推荐
- NetCore 3.0 中使用Swagger生成Api说明文档及升级报错原因
认识Swagger Swagger 是一个规范和完整的框架,用于生成.描述.调用和可视化 RESTful 风格的 Web 服务.总体目标是使客户端和文件系统作为服务器以同样的速度来更新.文件的方法,参 ...
- golang数据结构之总结
golang语言的一些数据结构实现,包括: 队列(单队列.循环队列) 链表(单链表.双链表.循环链表(解决约瑟夫环问题)) 栈(实现加减乘除计算) 递归之迷宫问题 哈希表(员工管理系统) 树(三种遍历 ...
- 借 redis cluster 集群,聊一聊集群中数据分布算法
Redis Cluster 集群中涉及到了数据分布问题,因为 redis cluster 是多 master 的结构,每个 master 都是可以提供存储服务的,这就会涉及到数据分布的问题,在新的 r ...
- 七种CSS左侧固定,右侧自适应两栏布局
一 两栏布局基本HTML和CSS 首先创建基本的HTML布局和最基本的样式. 基本的样式是,两个盒子相距20px, 左侧盒子宽120px,右侧盒子宽度自适应 <div class="w ...
- NET视频教程分享
地址:链接:https://pan.baidu.com/s/1q47WN1XFw19vLZ8XZqnB_g 提取码:8ut2 这是我收集的一套.NET学习视频教程(某智24期视频),分享出来, ...
- Vue中slot插槽的使用
- 【UIBE】研究生考试前必看
梦想就在前方,再跨一步就能到达.考研的同学们,请务必加油! 回想4年前的今天,坐在图书馆里的我,紧张于即将来临的考试,期待于每天憧憬的未来.大半年的复习生活,我学会了很多,学会了早起抢座位:学会了 ...
- 在 VSCode 中 Angular 的字符串报错的问题
使用 Angular 时,报错 [tslint] " should be ' 报错原因是因为 ESLint 的严格模式,限制了使用 ' ,甚至多一个空格都会报错. 我们只需要在 settin ...
- 发布一个基于协程和事件循环的c++网络库
目录 介绍 使用 性能 实现 日志库 协程 协程调度 定时器 Hook RPC实现 项目地址:https://github.com/gatsbyd/melon 介绍 开发服务端程序的一个基本任务是处理 ...
- Http协议 & Servlet
Http协议&Servlet Http协议 什么是协议 双方在交互.通讯的时候遵守的一种规范.规则. http协议 针对网络上的客户端与服务器端在执行http请求的时候,遵守的一种规范.其实就 ...