[转]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+ ...
随机推荐
- segment树(线段树)
线段树(segment tree)是一种Binary Search Tree或者叫做ordered binary tree.对于线段树中的每一个非叶子节点[a,b],它的左子树表示的区间为[a,(a+ ...
- luogu P1901 发射站
题目描述 某地有 N 个能量发射站排成一行,每个发射站 i 都有不相同的高度 Hi,并能向两边(当 然两端的只能向一边)同时发射能量值为 Vi 的能量,并且发出的能量只被两边最近的且比 它高的发射站接 ...
- CF 17E Palisection 求相交回文串个数
In an English class Nick had nothing to do at all, and remembered about wonderful strings called pal ...
- Docker学习-jenkins+github实现持续集成和部署
上一篇介绍了docker环境搭建,本篇继续深入,结合jenkins利用docker-compose容器编排简单介绍下如何实现个人学习的持续集成/部署. 本篇学习曲线: 1.安装/运行jenkins容器 ...
- 【转】Nginx + CGI/FastCGI + C/Cpp
接着上篇<Nginx安装与使用>,本篇介绍CGI/FASTCGI的原理.及如何使用C/C++编写简单的CGI/FastCGI,最后将CGI/FASTCGI部署到nginx.内容大纲如下: ...
- Selenium之勾选框操作
勾选框操作: 所谓勾选框,意思是可以勾选一个及以上或全部勾选.勾选框的图标一般都是方形的. 复选框勾选一般分为三种情况: ①勾选单个框,我们直接用元素定位的方式定位到点击即可. ②勾选多个 ...
- 虚拟链路(virtual-link)
第四部分,虚拟链路配置.我们都知道,在ospf多区域中,所有与主干区域(ospf0)相连接的其他区域可以相互学系路由信息,但是,如果是非主干区域和非主干区域相连,就不能相互学习路由信息,这时候,我们可 ...
- Java并发编程系列-(6) Java线程池
6. 线程池 6.1 基本概念 在web开发中,服务器需要接受并处理请求,所以会为一个请求来分配一个线程来进行处理.如果每次请求都新创建一个线程的话实现起来非常简便,但是存在一个问题:如果并发的请求数 ...
- vue-cli3抽离配置文件,动态修改打包后配置
由于项目有外部部署需求,对不同的环境前端调用后台的地址不一样,且不能提前预知必须到部署现场后才能确定后端地址,故需要将调用后端相关的配置抽离到文件中,打包后部署人员在方便现场修改. 思路如下: 1.由 ...
- LVS+Keepalived-DR模式
Environment:4台CentOS机器 两台LVS 两台web服务器 LVS主备的操作,都需要安装ipvsadm和keepalived yum -y install ipvsadm keepal ...