Descripción del proyecto:
Aquí, vamos a estudiar un sencillo cómo iniciar sesión en GFG por selenium. Selenium es una herramienta gratuita para pruebas automatizadas en navegadores excepcionales. luego un simple requisito de identificación y contraseña.
Requisitos:
- Selenium: introducción e instalación de Selenium Python
- Primero, vaya al sitio web GeeksforGeeks utilizando este enlace .
- Luego haga clic en investigar el elemento presionando ctrl + shift + i de forma urgente o acceda a la configuración del navegador y haga clic en investigar detalles manualmente.
- Luego navegue por el cuadro donde se completa el correo electrónico o el nombre de usuario y luego copie x_path.
- Luego navegue por la Contraseña y luego copie x_path.
- Luego navegue por el botón Iniciar sesión y luego copie x_path.
Pasos para configurar –
Implementación:
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 user or mail id driver.find_element_by_xpath( '//*[@id ="luser"]' ).send_keys( 'praveeny182' ) # find the element where we have to # enter the xpath # fill password driver.find_element_by_xpath( '//*[@id ="password"]' ).send_keys( 'xXXXXX' ) # find the element sign in # request using xpath # clicking on that element driver.find_element_by_xpath( '//*[@id ="Login"]/button' ).click() |
Salida:
eventualmente iniciará sesión en geeksforgeeks en el navegador donde se ejecuta Selenium.
Publicación traducida automáticamente
Artículo escrito por praveeny182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA