uipath

How to close the child tab using Close tab activity in UIPath

戏子无情 提交于 2020-05-31 22:26:02
问题 UiPath is closing the main window instead of child window. I have defined a browser variable in the attach browser activity and passed that browser variable to the Close tab activity. The main Chrome window is still getting closed. Also attached is the project xaml file https://drive.google.com/drive/folders/1ykpHvFEc7DkCI7enUAOgExWBN6KHKQo-?usp=sharing 回答1: In my opinion, It would be alot more easier, if you use send hotkey activity of UI path with "CTRL + w" to close the active tab. 来源:

Does docker allow for robotic process automation?

不羁的心 提交于 2019-12-24 20:32:47
问题 Can docker containers be used along with UI based RPA tools like blueprism or uiPath? Blueprism recommends using virtual machines but offers no support of docker 回答1: Yes it will be possible. I'm unfamiliar with the solutions you describe so I'm unable to provide you with specific examples. Any Linux (and Windows) process can be run in a container. Docker made containers into a thing but they're really not. They're just (very useful) conceptual "sugar" on Linux namespaces and cgroups to make

Return output from Powershell script to UIPath using Invoke power shell

那年仲夏 提交于 2019-12-24 08:18:05
问题 I am trying to get a value from an input box from a Powershell script back to a UI Path Sequence. I have created a simple sequence as an example. Yes, I know I could do this all in UI Path, I am just using an easy example as a way to try and test this for future use cases. Here is my sequence: My text file from "Read text file" is: $test = "Desktop/PassingArgs2of2.ps1 -Message foo" Invoke-Expression -Command $test The activity in UiPath looks like so: The psCmd that I am running in the Invoke

How to execute a workflow on a PC which doesn't have the UiPath Studio or UiPath Robot installed?

ε祈祈猫儿з 提交于 2019-12-23 03:44:12
问题 How to execute a workflow on a PC which doesn't have the UiPath Studio or UiPath Robot installed? I have been working with UiPath to automate workflows using UiPath Studio and UiPath Robot (both locally and on localhost through Orchestrator) and was successful. I have been through the following videos from academy.uipath : Lesson Orchestrator 2018.2 - Video Part 1 Lesson Orchestrator 2018.2 - Video Part 2 I am aware I need to: Add a host as a Standard Machine first Then add a Standard Robot

Looping on URLs from Excel file using UiPath

随声附和 提交于 2019-12-20 06:28:57
问题 I have tried several ways but somehow they dont look clean; I have a URL file in Excel format (400+ urls in a column) I want UiPath to read from that file and browse these URLs one by one I tried with making "Navigate to" read from a variable that reads from Excel but it just gets messy and does not work. anyone can suggest some easy way to do it? 回答1: Please elaborate what you want to do. As per my understanding, you have a Excel file with a column containing the URLs and you want to visit

UiPath -Error {“message”:"Click Text 'SAPTreeList': Cannot find the UI element corresponding to this selector: <wnd ctrlid='90279688' />

情到浓时终转凉″ 提交于 2019-12-19 18:58:05
问题 I am following the video SAP Automation with UiPath to automate login as a user with valid credentials within a SAP Server. SAP Information : IDES ECC 6.0 incl. EhP7 System Information : I am not using a VM. I use a Intel Core i3 CPU with 64 bit - Windows 8 system. The login process as per the tutorial basically works for an hour or so since it's creation. But whenever I am trying to execute the workflow after long intervals (example, next day), the robot won't start and I am facing an error

UiPath -Error {“message”:"Click Text 'SAPTreeList': Cannot find the UI element corresponding to this selector: <wnd ctrlid='90279688' />

半城伤御伤魂 提交于 2019-12-19 18:56:13
问题 I am following the video SAP Automation with UiPath to automate login as a user with valid credentials within a SAP Server. SAP Information : IDES ECC 6.0 incl. EhP7 System Information : I am not using a VM. I use a Intel Core i3 CPU with 64 bit - Windows 8 system. The login process as per the tutorial basically works for an hour or so since it's creation. But whenever I am trying to execute the workflow after long intervals (example, next day), the robot won't start and I am facing an error

Why does the ctrlid format detected by UiPath differs from the documented format in their XSLT representation?

。_饼干妹妹 提交于 2019-12-13 13:07:00
问题 Why does the ctrlid format detected by UiPath Studio differs from the documented format in their XSLT representation? Currently I am working with UiPath to automate a few workflows. Environment Details: SAP Client: IDES ECC 6.0 incl. EhP7 Host machine: Intel Core i3 CPU with 64 bit - Windows 8 system. While trying to identify an element in SAPTreeList / SAP&apos;s Advanced Treelist it seems UiPath detects the ctrlid in the following formats: <wnd ctrlid='74372104' /> <wnd ctrlid='59648' idx=

Excel Shortout key to format axis bound?

自古美人都是妖i 提交于 2019-12-13 04:15:57
问题 I’m required to adjust chart axis to show 97 to 100 range as shown in image using send hotkey. I’ve done(from chart) ctrl 1, ctrl up x3, ctrl 5 to get this far. I need the shortcut key to get to min/max. (Do refer to screenshot) enter image description here Any help is appreciated! 回答1: @Yuca is right - there is no built-in hotkey. Instead, you will want to record a macro using this link to get you started. When you record a macro, it translates the clicks and actions you perform into VBA

UIPath RPA scrape data from images

♀尐吖头ヾ 提交于 2019-12-11 17:33:36
问题 I have a list of images that I am currently looping through. Is it possible to have a command where I can put in the location of text that I am trying to extract or show it with something like Citrix Scrape on what data I want to take out? 回答1: The Get OCR Text action requires you to provide a UI element. One simple option is to loop over all images, then open them in an image viewer of your choice, and then use the Text -> Scrape Relative to extract your invoice number into a variable. You