Taking data from excel to chrome

I’m seeking some assistance in figuring out how to:

  • Move information about my clients (username, password, etc) from a specific column in an excel file and into a website’s sign up form.

  • So how would I move the information from First Name into chrome website

Hi @Jon_1

Steps to follow :-

  1. Excel Application Scope Activity
  2. Read Range Activity within Excel Application Scope Activity
  3. ForEachRow Activity in which Read Range output variable you will pass
  4. Assign activity within ForEachRow Activity
    String firstName = row(“First Name”).ToString
    Same use assign activity for all other paremeters
  5. Using TypeInto Activity enter each parameter into Browser Website signup Form

Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.