python常用面试题_Python+Selenium 常见面试题整理[通俗易懂]

python常用面试题_Python+Selenium 常见面试题整理[通俗易懂]整理加复习1、记录一下刚刚看到的博客https://www..com/lesleysbw/p/5916022.html中的一小段非常认同看到一位大神的面试准备,我不想写了TT。等我好好看完,再决定怎么继续写下去吧,照搬毫无意义。大神博客地址:https://www..com/lesleysbw/category/946223.htmlQunar机票搜索场景访问Qunar机票首页http://fli…

大家好,又见面了,我是你们的朋友全栈君。

整理加复习

1、记录一下刚刚看到的博客https://www..com/lesleysbw/p/5916022.html中的一小段

fd1ec191b8630f0c2b34e429cdccf08c.jpg

非常认同

看到一位大神的面试准备,我不想写了TT。等我好好看完,再决定怎么继续写下去吧,照搬毫无意义。大神博客地址:https://www..com/lesleysbw/category/946223.html

Qunar机票搜索场景

访问Qunar机票首页http://flight.qunar.com,选择“单程”,输入出发、到达城市,选择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(“https://flight.qunar.com/”)

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()

执行搜索,会出现一直加载中的情况,不知道为啥,有时候又挺好的

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151439.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)
blank

相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号