from selenium import webdriver
import time
from selenium.webdriver.common.action_chains import ActionChains
driver=webdriver.Chrome()
driver.get('https://kyfw.12306.cn/otn/resources/login.html')
driver.maximize_window()
huoqu=driver.find_element_by_xpath('//input[@placeholder="用戶名/郵箱/手機號"]').send_keys(")
huoqu=driver.find_element_by_xpath('//input[@placeholder="密碼"and @aria-label="請輸入密碼"]').send_keys(")
time.sleep(3)
driver.find_element_by_xpath('//a[@class="btn btn-primary form-block"]').click()
sli_ele = driver.find_element_by_xpath('//span[@id="nc_1_n1z" and @class="nc_iconfont btn_slide"]').click()
time.sleep(3)
action = ActionChains(driver)
action.click_and_hold(sli_ele)
action.move_by_offset(0,300)
action.release()
action.perform()
driver.quit()