Open In App

Sign in Booking.com using Selenium in Python

Last Updated : 04 Jan, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we’re going to study a simple how-to log in booking.com by selenium. Selenium is a free tool for automated trying out across exceptional browsers.

Requirement:

  • You need to install chromedriver and set path. Click here to download.
  • Selenium is a powerful tool for controlling web browsers through programs and performing browser automation. It is functional for all browsers, works on all major OS and its scripts are written in various languages i.e Python, Java, C#, etc, we will be working with Python.

Below are the steps:

  • First, go to the booking.com website.
  • Then click on investigate element by urgent ctrl + shift + i or stepping into setting of browser and clicking on investigate detail manually.
  • Then navigate the box where email is filled then copy the x_path.

  • Then navigate the next button and copy the x_path.

  • Then navigate the Password then copy the x_path.

  • Then navigate the Sign-in button then copy the x_path.

Below is the implementation:

Python3




# import required modules
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time
  
# create instance of Chrome webdriver
driver = webdriver.Chrome()
  
# find the element where we have to
# enter the xpath
# fill the  email
driver.find_element_by_xpath('//*[@id="username"]').send_keys('xxxxxx.com')
  
# click on next button
driver.find_element_by_xpath(
    '//*[@id="root"]/div/div[2]/div[1]/div/div/div/div/div/div/form/div[3]/button/span').click()
  
# find the element where we have to
# enter the xpath
# fill the password
driver.find_element_by_xpath('//*[@id="password"]').send_keys('Praxxxxx')
  
# find the element Sign in
# request using xpath
# clicking on that element
driver.find_element_by_xpath(
    '//*[@id="root"]/div/div[2]/div[1]/div/div/div/div/div/div/form/button/span').click()


Output:



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads