Search results

  1. A

    System Date

    It is easy: 1 - create a DateTime variable 2 - use Constant value action 3 - select the DateTime variable in the Constant value action 4 - select Current date mode Then you can convert the DateTime variable to a String using Date Format action.
  2. A

    Locked out of Control tower

    You can find the guide here https://kb.workfusion.com/display/RPAe/How+to+Modify+Credentials
  3. A

    Locked out of Control tower

    Are you sure you use the correct username and password? If you forgot credentials, you can reset them.
  4. A

    How to solve if I get Xpath not worked?

    Check if the element is inside an iframe on the page.
  5. A

    Excel Attachment in Email

    You can do it using clicks on window controls and keystrokes actions: click Attach file - Browse this PC - type in the path to the file using keystrokes - press Enter. Instead of clicking Attach file - Browse this PC you can also use keystrokes: Alt, h, a, f .
  6. A

    Unable to Publish to Control Tower giving 401: Unauthorized error in RPA Express

    It looks like the Control Tower section in your server profile is missing. You can open Window - Preferences - WorkFusion Studio - Server Profile and fill it manually: add Control Tower url, and username and password you created during installation.
  7. A

    WorkFusion RPA Express SetCellValue task fail

    What error does it show? Please share a screenshot.
  8. A

    ERROR while starting Execution

    Check if your server profile is filled in. It must be missing Bot relay url.
  9. A

    Workfusion Debug error, java

    Looks like your server profile is empty. Fill in the Bot Relay URL as shown here https://kb.workfusion.com/display/RPAe/Preferences
  10. A

    Unable to login to Workfusion Control Tower (I've tried the default username/password)

    You should use the username and password you created during installation.
  11. A

    WorkFusion Running in background

    You can run scripts on remote desktops, in this case they'll work even if the pc is locked.
  12. A

    rpa express not work xpath

    As I understand, you basically need the index to increment in each step. You could try this approach. 1.Use type text option. 2. Make an expression to increment an index by 1.
  13. A

    Java applet using Workfusion

    Hi Akash, Not, yet, but you will be able to do it in version 2.0 using object recording, or via scripting.
  14. A

    RPA Workfusion adds random numbers and letters

    You must be using an old version, these actions were added a couple of months ago. You should update RPA Express to use them.
  15. A

    RPA Workfusion adds random numbers and letters

    Sure, it is in Variables group of actions.
  16. A

    RPA Workfusion adds random numbers and letters

    This is Excel exponential format for long numbers. You can reformat them into Integer numbers using Number format - Reformat string action.
  17. A

    rpa express not work xpath

    I just noticed you used Get Column. If you save the column to variable "cuit", that it should a list, not a table, and your script will look like this. It is supposed to do the actions for all values in the list, regardless of their number.
  18. A

    rpa express not work xpath

    According to your variables panel, "cuit" is not a list, but a table, so you will need to do something like this - iterate through each row in the table and each cell in the row, and perform this action for each cell.
  19. A

    RPA Workfusion adds random numbers and letters

    Hi! What kind of numbers and letters does it add? Can you post an example?
  20. A

    rpa express not work xpath

    It happens when numbers are copied from Excel. Try using Number Format - Reformat string as shown below:
Top