新建乙個register.html檔案(頁面效果如圖)
籍貫下拉選項預設顯示為第乙個選項「北京」
需求:訪問頁面,選擇註冊頁面【籍貫】下拉框中的第三個選項「廣州」
**
# coding:utf-8
from selenium import webdriver
import os
file_path = "file:///" + os.path.abspath("register.html")
browser = webdriver.chrome()
browser.get(file_path) # 註冊頁與當前指令碼在同一目錄
# 此處用到了二次定位,可以在找到第乙個元素後再查詢第二個元素,針對元素進行操作
browser.find_element_by_name("addr").find_element_by_xpath("//form/select/option[3]").click()
結果 Python Selenium環境搭建
安裝python 設定 python 的環境變數 安裝目錄 安裝目錄 scripts 使用 pip安裝 selenium pip install selenium 安裝完python pip工具,在安裝目錄的 scripts 目錄下。在 dos下直接執行 pip install selenium 即...
Python Selenium 學習筆記
1 判斷元素是否存在 try driver.find element.xx a true except a false if a true print 元素存在 elif a false print 元素不存在 2 判斷元素是否顯示 driver.find element by id outputb...
Python Selenium錯誤小結
因為要使用web應用,所以開始用起了,selenium包,安裝倒是挺容易的,但就是出了很多bug。filenotfounderror winerror 2 系統找不到指定的檔案。通過錯誤反饋發現是要把該軟體加到路徑裡面,但是,設定了系統環境變數後發現還是不行,最後,使用了乙個非常原始的方法 brow...