How to automate login using url, providing username and password to login

Dear Experts, I am very new to UI path, i started using UI path from past 1 week. I want to automate login using url and provide username and password, can any one help me. I tried doing on my own, chosen applicaton/browser and provided url, given username and password. It is not error while i run script. can some one help me.

Welcome to UiPath World !

  1. Use the “Get Asset” Activity to retrieve the username and password from Orchestrator.
  • Get Asset (Username):
    • Add Get Asset activity.
    • Set the AssetName to Username (the name you gave it in Orchestrator).
    • Store the result in a variable, for example: username.
  • Get Asset (Password):
    • Add another Get Asset activity.
    • Set the AssetName to Password.
    • Store the result in a variable, for example: password.
  1. Open Browser to the login page:
  • Use the Open Browser activity.
  • Set the URL property to the login page URL of your application.
  1. Use “Type Into” for Username and Password:
  • Add a Type Into activity to type the username:
    – Indicate the username input field on the webpage.
    – Set the Text property to the variable username (from Get Asset).
  • Add another Type Into activity to type the password:
    – Indicate the password input field on the webpage.
    – Set the Text property to the variable password (from Get Asset).
  1. Click the Login Button:
    –Add a Click activity to click the login button.
    – Indicate the login button on the screen.

Hi @Jeevan_V ,

please go throw below tutorial it may help you.

if you are new to UiPath, Refer UiPath academy and UiPath Documentation Portals it will guide you very well with all kind of scenarios

Happy Automation!!

Hi @Jeevan_V

You can try the following approach :

  1. First, get the Attach Browser activity and indicate the browser you want to work with.
  2. Use type into activity and indicate the username and the password position, where you want to type them both. Manually for now, you can pass the username and password, later maybe you can store in a variable or use other approach and pass them there.
  3. Use Click activity to indicate on login/submit button whichever is available.

Hope this helps you.
Happy Learning.

@Jeevan_V,

As you are new to UiPath, I would suggest to follow a structured learning path instead of use cases. Jumping from use case to use case will confuse you a lot. Get the basics clear first and then try the usecases.