python selenium 時間日期控制項處理

2021-08-18 17:32:52 字數 977 閱讀 6468

把時間控制項,都當成乙個普通的input框處理

1. 可以直接輸入值,沒有readonly屬性的,直接輸入值就可以了

2. 有readonly屬性的,先用js去掉readonly屬性,然後直接輸入日期文字內容

3. 使用js方法輸入日期:

# coding:utf-8

from selenium import webdriver

import time

driver = webdriver.firefox()

driver.get("")

# 處理開始時間

# js去掉readonly屬性

js = 'document.getelementbyid("train_date").removeattribute("readonly");'

driver.execute_script(js)

# js新增時間

js_value = 'document.getelementbyid("train_date").value="2017-12-10"'

driver.execute_script(js_value)

# 處理返程時間

js2 = 'document.getelementbyid("back_train_date").removeattribute("readonly");'

driver.execute_script(js2)

js2_value = 'document.getelementbyid("back_train_date").value="2017-12-25"'

driver.execute_script(js2_value)

time.sleep(5)

driver.close()

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...