I search in forum for the error message “UiElement is not longer valid” and somewhere mentioned to select using the UI Explorer with UI Frameworks as Active Accessibility but still I can’t select the area below the file menu bar.
I am trying to resolve the Advance Training Assesment-1 when am trying to Extract the Datatable in https://www.acme-test.com/work-items am facing error “Object reference not set to an instance of an object”
Could someone please help me up in resolving the issue.
{{
“message”: “ExtractDataTable : Object reference not set to an instance of an object.”,
“level”: “Error”,
“logType”: “Default”,
“timeStamp”: “11:00:46”,
“processVersion”: “1.0.6706.35891”,
“fileName”: “ExtractDataTable”,
“jobId”: “00bf87e5-7b68-437b-889d-1f4d1b1e0173”,
“robotName”: “PRASA”
}}
I am using UiPath.ComputerVision.Activities = 2.0.1 package. It was working fine, all of sudden now I have started getting the below error whenever I try to user an CV type activity from this package.
“CV screenshot could not be loaded. Please reindicate on-screen to repair it.”
FYI, It is not only any screenshot related activity but even when I use ‘Indicate on screen’ or any other option from the CV activities, I get this error. How can I fix this?
I am getting an error whenever it’s the case that I am leaving a scope where there is an out argument with several megabytes of information stored. This is the case with DataTables as well as when I grab multiple emails with their attachments.
Message: Could not retrieve the result of the job execution. This might be because a message was too large to process.
Exception Type: System.Exception
An ExceptionDetail, likely created by IncludeExceptionDetailInFaults=true, whose value is:
System.Exception: Could not retrieve the result of the job execution. This might be because a message was too large to process.
The strangest thing is that, if this is run in a long running program with the offending sequence file being used, it will return without throwing an exception and cause weird issues later, making other areas bug out instead.
This is similar to a number of posts already present:
The problem is that all of the information I’m passing is necessary and that I am having to reduce things, store them in files, and then re-read them later on:
For DataTables, writing to excel works as a workaround. However, I have had issues saving and reloading datetimes as Excel wants to format them even when it’s the case that I save them as type String.
For emails, I have noticed that reducing the number saved has worked, such as only requesting them one at a time in GetTransactionData and going until the inbox is empty.
Ever since I can remember - we have been able to update/upgrade Orchestrator with no additional configuration or tweaking. However, since upgrading to the LTS release, we now encounter a really strange error in IIS (Error 500), the detailed summary is as follows:
"This request has been blocked because sensitive information could be disclosed to third party web sites when this is used in a GET request. To allow GET requests, set JsonRequestBehavior to AllowGet."
I can’t seem to resolve this any further. I have checked the database connection string, pipeline mode, authentication, SSL certificate etc… and all are fine.
Has anyone encountered this and perhaps been able to rectify the error?
When I try to indicate cell in Excel in Excel File card I get 'The Excel AddIn is installed by disabled. Please enable it"
Then I go to Excel > Options > Add-ins > Manage Com Add-ins, then I select UiPath.Integration.ExcelAddin from the list. When I click OK I’m getting this error:
Name: UiPath.Integration.ExcelAddIn - UiPath.Integration.ExcelAddIn
From: file:///C:/Users/machetam/AppData/Local/UiPath/app-19.10.2/UiPath.Integration.ExcelAddIn.vsto
************** Exception Text **************
System.Security.SecurityException: The solution cannot be installed because it is signed by a publisher whom you have not yet chosen to trust. If you trust the publisher, add the certificate to the Trusted Publisher list.
at Microsoft.VisualStudio.Tools.Office.Runtime.OfficeAddInDeploymentManager.VerifyAddInTrust(ClickOnceAddInTrustEvidence evidence)
at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.VerifySecurity(ActivationContext context, Uri manifest, AddInInstallationStatus installState)
at Microsoft.VisualStudio.Tools.Applications.Deployment.ClickOnceAddInDeploymentManager.InstallAddIn()
The Zone of the assembly that failed was:
MyComputer
I tried installing UiPath certificate from uipath.com to Trusted publishers store, also added C:\Users\machetam\AppData\Local\UiPath\app-19.10.2\ location to Trusted Locations in Excel Options > Trust Center > Trusted Locations. Did not help.
Hey all, as the title suggests, I keep getting an AggregateException everytime I send a Hotkey through Excel. This was working previously until at some point yesterday it stopped. Nothing about the Excel portion of my process was changed when it stopped working.
I have hotkeys sent in other portions of the automation that still work flawlessly.
Everything is within an Excel Application Scope with the Visible Boolean Checked.
The selector for the Send Hotkey was using a variable beforehand but has since been changed to a hardcoded selector as the solution, still no results.
I’m running a sql query through an ODBC connection and trying to export it to Excel. The query is running to completion, report is being exported fully. However, this error populates after the export when trying to run this process in debug mode.
Studio 2019.10.1
Using an Azure VM
Searching has returned no solution, although many users have reported this issue. Any ideas?
When I use robot setting on Login Console = False, the process can run activities Type Into.
When I use roobt setting on login console = True, the process can’t run activities Type into, its get error time out reached.
I have a macro called “vin_search” in an excel file with the following code
Sub vin_search(Optional vin As String)
ActiveWorkbook.Sheets("BLANK").Activate
Dim WS_Count As Integer
WS_Count = ActiveWorkbook.Sheets.Count
Dim Z As Integer
For Z = 1 To WS_Count
ActiveWorkbook.Worksheets(Z).Activate
Dim Cell As Range
Columns("C:C").Select
Set Cell = Selection.Find(What:=vin, After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)
If Cell Is Nothing Then
Else
MsgBox ("Found")
MsgBox (Cells(Cell.Row, Cell.Column + 1).Value)
Exit For
End If
Next Z
End Sub
When I call it with Execute Macro it never finds the expected vin, however when I run it directly through excel, no problems. Any thoughts?
I am getting login issue while logging into the application… here my issue is if i did some changes in my .xaml file… then when i run it in first time after entering the username and password…and click on login button its reload to the same login page…
then i stop the project… and when i am running it in 2nd time its logging into the application…
so here i am entering to the application only the second time… in each and every small change…
so can any one help me on this…i am struggling since one week…