#所有流程 !!!不要修改為搶票,遵守法律法規是每一個中國公民應盡的責任,盜用並造成不良後果自負!!! ''' #可以實現買學生票,兒童票,殘疾票,成人票和所有能選的座位類別。 2022-05-22目前為止還是完全正常運行的,之後網頁改動就不一定了哦!!!!!!12306官網模擬買票:1.輸入賬號密 ...
#所有流程
!!!不要修改為搶票,遵守法律法規是每一個中國公民應盡的責任,盜用並造成不良後果自負!!!
'''
#可以實現買學生票,兒童票,殘疾票,成人票和所有能選的座位類別。
2022-05-22目前為止還是完全正常運行的,之後網頁改動就不一定了哦!!!!!!
12306官網模擬買票:
1.輸入賬號密碼登錄
2.取消疫情通告對話框
3.點擊車票,點擊單程
4.取消第二個疫情通告變更框
5.鍵入出發地,目的地,出發時間,剩下為預設
6.點擊查詢按鈕
7.1.沒有車票則回到5修改條件
7.2.有車票則展示所有列車名字和信息
8.用戶選擇列車的名字(名字錯誤將重新選擇)
9.點擊預定按鈕
10.點擊乘車人(預設為第一乘車人,且暫時選擇為成人)
11.根據展示出的票種和序列,用戶選擇票種(序號)
12.根據展示出的席別和序號,用戶選擇席別(序號)
13.點擊提交訂單
14.點擊確定提交(不可選擇位置)
15.在12306app上交錢
'''
#最熟悉的導包
from selenium import webdriver
from time import sleep
from selenium.webdriver import ActionChains
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
'''
如果測試,請把最後的確認購買按鈕註釋掉
'''
#規避檢測
#實測這個無效,在控制台還是能發現被檢測出來
caps={
'ms:edgeOptions':{
'excludeSwitches':['enable-automation']}
}
#Edge驅動 括弧裡面的是驅動的路徑
bro = webdriver.Edge('C:/Program Files (x86)/Microsoft/Edge/Application/msedgedriver',capabilities=caps)
#登錄
def denglu(bro):
bro.get('https://www.12306.cn/index/')
sleep(4)
#bro.set_window_size(1920, 1080)
#點擊登錄按鈕
button = bro.find_element_by_id('J-btn-login')
button.click()
#定位賬號密碼
username = bro.find_element_by_id('J-userName')
password = bro.find_element_by_id('J-password')
#輸入賬號密碼
username.send_keys('xxx')
password.send_keys('xxx')
#點擊登錄
login_button = bro.find_element_by_xpath('//div[@class="login-btn"]/a')
login_button.click()
#定位彈窗按鈕
#等待需要定位的元素載入出來再進行
WebDriverWait(bro, 15).until(EC.presence_of_element_located((By.XPATH,'//*[@class="dzp-confirm"]/div[2]/div[3]/a')))
tanchuang_button = bro.find_element_by_xpath('//*[@class="dzp-confirm"]/div[2]/div[3]/a')
tanchuang_button.click()
#購買單程! 往返不行哦
def buy_one_way(bro):
#車票菜單
ticket_botton = bro.find_element_by_xpath('//*[@id="J-chepiao"]/a/i')
ticket_botton.click()
#單程菜單
one_way_ticket_botton = bro.find_element_by_xpath('//*[@id="megamenu-3"]/div[1]/ul/li[1]/a')
one_way_ticket_botton.click()
#等待提示框緩衝完成
WebDriverWait(bro, 10).until(EC.presence_of_element_located((By.XPATH,'//*[@id="qd_closeDefaultWarningWindowDialog_id"]')))
tip_botton = bro.find_element_by_xpath('//*[@id="qd_closeDefaultWarningWindowDialog_id"]')
tip_botton.click()
#編輯出發地和目的地
#看看是否有票
havesign = False
#只要沒有車則需要重新輸入起始和終點地,出發時間
while(1):
departure_textbox = bro.find_element_by_id('fromStationText')
departure_textbox.click()
#標記出發地
departure_text = (input('輸入起始站: '))
#departure_text = '北京'
departure_textbox.send_keys(departure_text)
departure_textbox.click()
departure_textbox.send_keys(departure_text)
departure_textbox.send_keys(Keys.ENTER)
destination_textbox = bro.find_element_by_id('toStationText')
destination_textbox.click()
destination_textbox.send_keys(input('輸入終點站: '))
#destination_textbox.send_keys('天津')
destination_textbox.send_keys(Keys.ENTER)
#sleep(2)
#編輯出發時間
gotime = bro.find_element_by_xpath('//*[@id="train_date"]')
ActionChains(bro).double_click(gotime).click(gotime).perform()
gotime.send_keys(Keys.BACKSPACE)
gotime.send_keys(input('輸入出發時間: xxxx-xx-xx : '))
#gotime.send_keys('2022-05-05')
#查詢按鈕
query_ticket_botton = bro.find_element_by_id('query_ticket')
query_ticket_botton.click()
#等待緩衝完成
try:
WebDriverWait(bro, 10).until(EC.presence_of_element_located((By.XPATH,'//tbody[@id="queryLeftTable"]/tr')))
except:
sleep(1)
pass
#看看是否有票
try:
bro.find_element_by_xpath('//tbody[@id="queryLeftTable"]/tr')
except:
havesign = False
else:
havesign = True
if(havesign) :
break
else:
print('沒有車,請重新搜索。')
#等待查票信息載入
sleep(5)
#WebDriverWait(bro, 1000).until(EC.prsesece_of_element_located((By.XPATH,'//tr/td[1]/div/div[1]/div/a')))
#ticket_list = bro.find_element_by_xpath('//tr/td[1]/div/div[1]/div/a')
#元素多就用複數!!!!!!!!!!!
#定位到所有車次所在的行
ticket_ele_list = bro.find_elements_by_xpath('//*[@id="queryLeftTable"]/tr[not(@datatran)]')
#for t in ticket_ele_list:
# ticket_list.append(t.text)
#print(ticket_ele_list,len(ticket_ele_list))
#定義火車名字和火車信息
train_name_list = []
#二維的
train_info_list = []
#列表外圍長度為火車數,內層為信息數,大概3,5個把
for i in range(len(ticket_ele_list)):
train_info_list.append([])
print('------------------------------------------\n')
print('載入列車信息中......')
#添加車名字
for tn in ticket_ele_list:
#tn.find_很重要,定位到當前列表定位的位置,從此開始繼續操作
train_name_list.append(tn.find_element_by_xpath('./td[1]/div/div[1]/div/a').text)
#print(train_name_list)
#print(ticket_ele_list)
#添加車信息
i_count = 0
for ti in ticket_ele_list:
train_info_list[i_count].append(('始終站: ' + ti.find_element_by_xpath('./td[1]/div/div[2]/strong[1]').text + '-->' + ti.find_element_by_xpath('./td[1]/div/div[2]/strong[2]').text))
train_info_list[i_count].append(('始終時間: ' + ti.find_element_by_xpath('./td[1]/div/div[3]/strong[1]').text + '---' + ti.find_element_by_xpath('./td[1]/div/div[3]/strong[2]').text))
train_info_list[i_count].append(('歷時: ' + ti.find_element_by_xpath('./td[1]/div/div[4]/strong[1]').text + '(' + ti.find_element_by_xpath('./td[1]/div/div[4]/span').text + ')'))
i_count +=1
#print(train_info_list)
#把車名字和信息封裝為字典
name_info_dic = dict(zip(train_name_list,train_info_list))
for name,info in name_info_dic.items():
print('%6s'%str(name) + ' : ' + str(info))
#定位用戶鍵入火車名字的行(index),以便於進行操作
train_name_index = 0
#當輸入的車名和列表中展示的車名不一樣的時候需要重新輸入車名直到正確為止
while(1):
#input_train_name = 'C2007'
input_train_name = input('輸入火車名: ')
if input_train_name in train_name_list:
train_name_index = train_name_list.index(input_train_name) + 1
#print(train_name_index)
break
else:
print('車名錯誤,重新搜索.')
#判斷是否有車 sign 為真則有
sign = False
try:
sleep(1)
bro.find_element_by_xpath('//*[@id="queryLeftTable"]/tr[not(@datatran)][%d]/td[13]/a'%train_name_index).text
sign = True
except:
pass
#根據sign 給出提示
if(sign):
print('該車目前有票')
#點擊預定按鈕轉跳網頁
sleep(0.5)
yuding_botton = bro.find_element_by_xpath('//*[@id="queryLeftTable"]/tr[not(@datatran)][%d]/td[13]/a'%train_name_index)
yuding_botton.click()
#選擇乘車人
#需要提前添加一個乘車人,本程式預設選擇第一個乘車人
sleep(0.5)
first_passenger_botton = bro.find_element_by_xpath('//*[@id="normalPassenger_0"]')
first_passenger_botton.click()
sleep(0.5)
#確認是學生票彈出視窗(先取消掉)
try:
query_stu_botton = bro.find_element_by_xpath('//*[@id="dialog_xsertcj_cancel"]')
query_stu_botton.click()
except:
pass
#解析到票種列表
ticket_type_ele_list = bro.find_elements_by_xpath('//*[@id="ticketType_1"]/option')
#將列表中的文本提取到改列表中
ticket_type_list = []
for i in range(len(ticket_type_ele_list)):
ticket_type_list.append('%d : '%(i+1) + bro.find_element_by_xpath('//*[@id="ticketType_1"]/option[%d]'%(i+1)).text)
#給用戶展示票種列表
print('票種類型: ')
print(ticket_type_list)
#用戶輸入選擇的票種序號
#ticket_type_sel_num = 3
ticket_type_sel_num = int(input('選擇你的票種序號, 輸入序號: '))
#定位票種框
ticket_type_optin_botton = bro.find_element_by_xpath('//*[@id="ticketType_1"]')
ticket_type_optin_botton.click()
#定位票種
ticket_type_sel_botton = bro.find_element_by_xpath('//*[@id="ticketType_1"]/option[%d]'%ticket_type_sel_num)
ticket_type_sel_botton.click()
#如果不是成人票會有彈窗確認
try:
type_query_botton = bro.find_element_by_xpath('//*[@id="dialog_xsertcj_ok"]')
type_query_botton.click()
except:
pass
#選擇席別
xibie_botton = bro.find_element_by_xpath('//*[@id="seatType_1"]')
xibie_botton.click()
#席別選擇列表
xibie_sel_list =[]
#席別種類
xibie_ele_list = bro.find_elements_by_xpath('//*[@id="seatType_1"]/option')
#將席別種類加入選擇列表中,並加上序號
for i in range(len(xibie_ele_list)):
xibie_sel_list.append('%d : '%(i+1) + bro.find_element_by_xpath('//*[@id="seatType_1"]/option[%d]'%(i+1)).text)
#讓用戶選擇席別類,用數字替代漢字
print('席別類型: ')
print(xibie_sel_list)
sel_num = int(input('選擇你的席別序號, 輸入序號: '))
#sel_num = 1
#用戶選擇的轉換為列表索引,在轉換為網頁裡面的,其實就是不用改
xibie_sel_botton = bro.find_element_by_xpath('//*[@id="seatType_1"]/option[%d]'%sel_num)
sleep(0.5)
xibie_sel_botton.click()
#提交訂單按鈕
submit_order_botton = bro.find_element_by_xpath('//*[@id="submitOrder_id"]')
submit_order_botton.click()
#核對信息按鈕
#此按鈕點擊後在app上支付即可,若是實驗,註釋掉後面的確定即可,12306每天有3次無後果取消訂單的機會
sleep(1)
query_submit_order_botton = bro.find_element_by_xpath('//*[@id="qr_submit_id"]')
sleep(1)
query_submit_order_botton.click()
print('購票成功, 感謝你的使用')
else:
print('該車目前無票')
return
denglu(bro)
buy_one_way(bro)