How to automatically log into a website using Selenium with Chrome in C#

A guide on how to use Selenium in C# to automatically log into a website. This article will use the Chrome browser and outline step-by-step how to automate the login process.

In this article, we will learn how to use Selenium WebDriver in C# to automatically log into a website. Selenium WebDriver allows for browser automation, and in this example, we will open Chrome, enter login credentials, and perform an automated login to a website.

C# Code

using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using System;

namespace SeleniumLoginExample
{
    class Program
    {
        static void Main(string[] args)
        {
            // Initialize ChromeDriver
            IWebDriver driver = new ChromeDriver();

            // Navigate to the login page
            driver.Navigate().GoToUrl("https://example.com/login");

            // Find the username field and enter the username
            IWebElement usernameField = driver.FindElement(By.Id("username"));
            usernameField.SendKeys("your_username");

            // Find the password field and enter the password
            IWebElement passwordField = driver.FindElement(By.Id("password"));
            passwordField.SendKeys("your_password");

            // Find and click the login button
            IWebElement loginButton = driver.FindElement(By.CssSelector("button[type='submit']"));
            loginButton.Click();

            // Wait for the login process to complete
            System.Threading.Thread.Sleep(5000);

            // Close the browser
            driver.Quit();
        }
    }
}

Detailed explanation:

  1. IWebDriver driver = new ChromeDriver();: Initializes a ChromeDriver object to control the Chrome browser.
  2. driver.Navigate().GoToUrl("https://example.com/login");: Navigates to the login page.
  3. IWebElement usernameField = driver.FindElement(By.Id("username"));: Finds the HTML element for the username field using its ID.
  4. usernameField.SendKeys("your_username");: Sends the username to the username field.
  5. IWebElement passwordField = driver.FindElement(By.Id("password"));: Finds the HTML element for the password field.
  6. passwordField.SendKeys("your_password");: Sends the password to the password field.
  7. IWebElement loginButton = driver.FindElement(By.CssSelector("button[type='submit']"));: Finds and clicks the login button.
  8. System.Threading.Thread.Sleep(5000);: Waits 5 seconds for the login process to complete.
  9. driver.Quit();: Closes the browser after the login is complete.

System requirements:

  • .NET Framework or .NET Core
  • Selenium WebDriver C#
  • Chrome browser
  • ChromeDriver

How to install the libraries needed to run the code:

  1. Install Selenium WebDriver for C#:

    • Open NuGet Package Manager in Visual Studio.
    • Install the Selenium.WebDriver and Selenium.WebDriver.ChromeDriver packages.
  2. Ensure you have Chrome browser and the appropriate version of ChromeDriver installed.

Tips:

  • Make sure that your ChromeDriver version matches your Chrome browser version.
  • Handle additional cases like captchas or two-factor authentication if the website requires them.
Tags: C#, Selenium


Related

Guide to Reading Excel Files Using C#

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using C#, utilizing the EPPlus library with step-by-step installation and illustrative examples.
Generating Captcha Code in C#

A guide on how to create a Captcha code using C# to protect web forms and applications from automated access. This tutorial demonstrates how to use the `System.Drawing` library to generate Captcha images.
Hiding a C# Application from Task Manager

A guide on how to hide a C# application from Task Manager using Win32 API to adjust the application's display properties.
How to GET JSON data from an API using C#

A guide on how to retrieve JSON data from an API using C#, leveraging the HttpClient class and Newtonsoft.Json library for processing data.
How to INSERT data into a MySQL database using C#

A guide on how to use Prepared Statements in C# to insert data into a table in a MySQL database safely and effectively.
Create a Simple Chat Application Using Socket.IO in C#

A detailed guide on how to create a simple chat application using Socket.IO in C#, helping you understand real-time communication and build interactive applications.
Convert markdown string to HTML using C#

A guide on how to convert a markdown string into HTML in C# using the MarkdownSharp library.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
How to open Notepad using C#

A guide on how to open the Notepad application using C# via the `Process` class in .NET. This tutorial helps C# developers understand how to interact with external applications using simple code.
Multithreading in C#

A comprehensive guide on how to implement multithreading in C# to make better use of CPU resources and enhance application performance by executing multiple tasks simultaneously.

main.add_cart_success