Last Updated: Oct 5, 2021
Whenever I am executing the task with Predefined function Insert Data into a Inline Jiffy table, I get the error message as "Column not present in Table", although the column is present in the Inline table. This error occurs when the column name you provided does not match exactly with the column name in the table.
Copy the exact column names from the Inline Jiffy table and provide in the parameter Column_name of the function, comma-separated and rerun the task.The column names are case-sensitive.
While executing Web UI node, I get an error in step data using predefined function Get Table Value, "Given row number one is more than available data rows zero.". This error occurs when for the row number given in the predefined function Get Table Value, no data is present in the Data Table from which value is being extracted. Ensure that the result set that populates the Data Table has data for the given row and column number. For example, if you are populating the Data Table from a search result of a website, search manually with the same inputs and ensure data is fetched. Else, change the inputs of the automation for which data is available in the result set and provide a row and column number that has data.
Download From Server function fails with the error, “Failed to download/replace the fie…..”. This error can occur due to multiple reasons:
Windows dose not allow to save the file names with characters / \ : * ? < > |
When deleting a folder using Predefined function DeleteFolder I get the error "Access is denied". This error occurs when the user does not have the required permissions for the given folder/file. Perform the following steps to provide full access.
Getting an error “Error while saving functions. HTML tags are not allowed in functions” when I try to save a user-defined function.
This error occurs when restricted HTML tags are used in user-defined functions. The restriction on the tags listed below is imposed due to security reasons.
However, the restricted HTML tags can be first replaced with any user defined name in the code and can be replaced back with the actual tags using replace function.Restricted HTML Tags: script, img, a, svg, video, iframe, form, object, style, meta, isindex, applet
To replace a restricted tag "a" the code would be:
val = <jiffy_a>Hello</jiffy_a>;
(write HTML code)
return val.replace('jiffy_a','a');
This will return <a>hi</a>
I am trying to extract table value using Get Table Value function, it is showing an error “invalid literal for int() with base 10...”. This error can occur if the value provided for rowNumber or columnNumber parameters in Get Table Value function is not numeric. Ensure the value provided is numeric.
Task failed due to “java.lang.RuntimeException…….Exec Engine - MAX_MESSAGE_SIZE_LIMIT Exceeded - 30 mb" error. This error occurs if the load at the output of node is high. There is a limit of 30MB.
While executing a user-defined function, getting an error as "No module named 'dataparser'”. This can occur when data-parser libraries are not installed. Follow the steps mentioned below to install the library-
– py -3.7 -m pip install dateparser
I created the folder using jiffy function. When I delete the folder manually or using the jiffy function it throws an error “The action can’t be completed because the folder or a file in it is open in another program”. This issue is faced when the file/folder is open. Close the files/folders that are opened while performing delete operations on files/folders.