1. 程式人生 > >python selenium簡單介紹

python selenium簡單介紹

一,介紹
Selenium是一個強大的開源Web功能測試工具系列,可進行讀入測試套件、執行測試和記錄測試結果,模擬真實使用者操作,包括瀏覽頁面、點選連結、輸入文字、提交表單、觸發滑鼠事件等操作,並且能夠對頁面結果進行種種驗證

二,環境準備
1,安裝selenium
   可以使用pip install seleniu進行安裝,這裡演示用工具pycharm安裝
   在PyCharm中file->setting,找到project->project interpreter,點選新增
  

在彈出的頁面中

 2,驅動安裝
   1.chromedriver的驅動下載地址:https://code.google.com/p/chromedriver/downloads/list
   2.Firefox的驅動geckodriver下載地址:https://github.com/mozilla/geckodriver/releases/
   下載解壓到python目錄即可
   
三、簡單驗證
http://m.credit100.com/#/redBlackList?type=3 這個頁面是新華社重大稅收違法案件當事人查詢頁面
查詢具體某個企業新詳情頁面測試程式碼:

#-*- coding: UTF-8 -*-
import time
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from bs4 import BeautifulSoup as BS

compy_name='黑山縣益盛藥業有限公司'
compy_id='7693'
url="http://m.credit100.com/#/redBlackText?name="+compy_name+"&code="+compy_id+"&type=3"

# driver = webdriver.Chrome("D:/python36/chromedriver.exe")
#driver = webdriver.Firefox("D:\python36\geckodriver.exe")
driver = webdriver.Firefox()
driver.implicitly_wait(30)  # 等待
driver.get(url) # 訪問地址
time.sleep(6)

# 公司
compy_Name_xpath = "/html/body/app-root/app-red-black-text/div/div/div/div/div/div[1]/div/h3"
#組織機構程式碼
org_xpath='/html/body/app-root/app-red-black-text/div/div/div/div/div/div[2]/ul/li[1]/h4'
#組織機構程式碼值
org_value_xpath='/html/body/app-root/app-red-black-text/div/div/div/div/div/div[2]/ul/li[1]/p'

compy_name = driver.find_element_by_xpath(compy_Name_xpath).text
org = driver.find_element_by_xpath(org_xpath).text
org_code = driver.find_element_by_xpath(org_value_xpath).text

#print
print(compy_name)
print(org)
print(org_code)

如果想詳細看看具體的api,請參考https://selenium-python-zh.readthedocs.io/en/latest/