025、xpath 定位04:class 属性中间有空格,如何定位?
一、xpath 定位:class 属性中间有空格,如何定位?
xpath定位, class 属性中间有空格,是该元素有多重属性,需要全部写上 ;
和之前的driver.find_element_by_class_name('btn-green').click() 不一样
find_element_by_class_name,只要有其中一个唯一的 class 属性 即可即可 ;
示例代码如下:
# -*- coding:utf-8 -*-
# Author: Sky
# Email: 2780619724@qq.com
# Time: 2021/8/20 0:28
# Project: day01
# Module: study_24.py
# Environment: Python3.8.6 , Selenium3 环境 ( 3.141.0 版本)
# Environment: Chrome ( 92.0.4515.131, 正式版本) + chromedriver(92.0.4515.107版本)
from selenium import webdriver
import time
driver = webdriver.Chrome()
driver.maximize_window()
driver.get("http://49.235.92.12:8200/users/login/")
time.sleep(3)
driver.find_element_by_xpath('//*[@id="username"]').send_keys("112233456@qq.com")
driver.find_element_by_xpath('//*[@id="password_l"]').send_keys("123456")
# xpath定位, class 属性中间有空格,是该元素有多重属性,需要全部写上
# 和之前的driver.find_element_by_class_name('btn-green').click() 不一样
# find_element_by_class_name,只要有其中一个唯一的即可 ;
time.sleep(3)
driver.find_element_by_xpath('//*[@class="btn btn-green"]').click()
driver.quit()