概述
窗口之间的切换1:
from selenium.webdriver import Chrome
import time
from selenium.webdriver.common.keys import Keys
import csv
# Django框架
web = Chrome()
web.get('https://www.lagou.com/')
web.find_element_by_xpath('//*[@id="changeCityBox"]/p[1]/a').click()
# element.click()
time.sleep(1)
web.find_element_by_xpath('//*[@id="search_input"]').send_keys('python', Keys.ENTER)
time.sleep(1)
web.find_element_by_xpath('//*[@id="s_position_list"]/ul/li[1]/div[1]/div[1]/div[1]/a/h3').click()
# 注意 ,在 seleium眼中 ,新窗口默认是不切换过来的 。
# 那么 将怎么将进入到新窗口中进行提取:
web.switch_to.window(web.window_handles[-1])
#在新窗口中进行提取
job_datall = web.find_element_by_xpath('//*[@id="job_detail"]/dd[2]').text
print(job_datall)
time.sleep(5)
# 关闭子窗口 变更 selenium窗口视角
web.close()
web.switch_to.window(web.window_handles[0])
print(web.find_element_by_xpath('//*[@id="s_position_list"]/ul/li[1]/div[1]/div[1]/div[1]/a/h3').text)
窗口之间的切换2
from selenium.webdriver import Chrome
import time
web = Chrome()
# 如果页面中遇到 iframe 该怎么处理
'''<iframe src="https://www.1717yun.com/jx/ty.php?url=http://tv.sohu.com/20130914/n386591910.shtml"
frameborder="0" border="0" marginwidth="0" marginheight="0" scrolling="no"
id="player_iframe" allowfullscreen="true"></iframe>'''
web.get('https://www.91kanju.com/vod-play/541-1-1.html')
#处理 iframe的话 ,必须先拿到 iframe ,再切换 视角到 iframe ,再然后才可以拿到数据
time.sleep(1)
iframe = web.find_element_by_xpath('//*[@id="WANG"]')
web.switch_to.frame(iframe)
print(web.find_element_by_xpath('/html/head/title').text)
# 切换回原网页 但是 写爬虫 不常用
web.switch_to.default_content()
最后
以上就是超帅毛巾为你收集整理的python爬虫中窗口之间的切换窗口之间的切换1:的全部内容,希望文章能够帮你解决python爬虫中窗口之间的切换窗口之间的切换1:所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复