Python Selenium 常見面試題整理

2021-09-08 07:50:58 字數 2099 閱讀 8388

整理加複習

1、記錄一下剛剛看到的部落格中的一小段

非常認同

qunar機票搜尋場景

訪問qunar機票首頁選擇「單程」,輸入出發、到達城市,選擇today+7日後的日期,點「搜尋」,跳轉到機票單程搜尋列表頁。

好像網上沒有找到python實現,簡單寫了下

from selenium import webdriver

import datetime

from selenium.webdriver import actionchains

from selenium.webdriver.common.keys import keys

import time

driver = webdriver.chrome(r'd:\chromedriver.exe')

driver.maximize_window()

driver.implicitly_wait(8)

driver.get("")

single_way = driver.find_element_by_xpath('//*[@id="searchtypesng"]')#單程

from_city = driver.find_element_by_xpath('//*[@id="dfsform"]/div[2]/div[1]/div/input')#出發城市

to_city = driver.find_element_by_xpath('//*[@id="dfsform"]/div[2]/div[2]/div/input')#到達城市

from_date = driver.find_element_by_xpath('//*[@id="fromdate"]')#出發時間

#選擇單程

if (single_way.is_selected()):

pass

else:

single_way.click()

#選擇到達城市-上海

action = actionchains(driver)

action.move_to_element(to_city).click().perform()

driver.find_element_by_xpath("//div[@data-panel='domesticto-flight-hotcity-to']//a[@class='js-hotcitylist' and text()='上海']").click()

driver.implicitly_wait(8)

#選擇出發城市-北京

action.move_to_element(from_city).click().perform()

driver.find_element_by_xpath("//div[@data-panel='domesticfrom-flight-hotcity-from']//a[@class='js-hotcitylist' and text()='北京']").click()

driver.implicitly_wait(8)

#設定出發日期-7天後

date = (datetime.datetime.now() + datetime.timedelta(days=7)).strftime("%y-%m-%d")

# print(date)

from_date.send_keys(keys.control + "a")

# js = "document.getelementbyid('fromdate').value='2019-02-07'" #編寫js語句

# driver.execute_script(js) #執行js

from_date.send_keys(date)

#搜尋driver.find_element_by_xpath('//*[@id="dfsform"]/div[4]/button').click()

time.sleep(6)

driver.quit()

執行搜尋,會出現一直載入中的情況,不知道為啥,有時候又挺好

python selenium模擬滑鼠的常用操作

引入模組 from selenium.webdriver.common.action chains import actionchains 使用前需將actionchains類例項化並傳入引數driver,然後呼叫滑鼠操作,最後呼叫perform函式執行滑鼠操作,不呼叫perform不執行 1 右擊...

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