win+python+selenium实现窗口和tab切换
这篇总结主要是关于两方面的需求:其一,在浏览器不同tab标签页之间按时间切换(同事用来不停刷新grid crontol 监控页面);其二,实现开启多个窗口,并将窗口缩放到一定范围,并齐占满整个桌面,按不同的时间间隔刷新几个页面。
一、标签页之间切换
之前这个通过找了一个浏览器插件tab-rotator实现了其需求,并未写程序实现,后面没事的时候网上翻selenium资料写了一个,内容如下:
#code by www.111cn.net
from selenium.webdriver.common.keys import Keys
from selenium import webdriver
import time
driver = webdriver.Firefox()
driver.set_page_load_timeout(60)
driver.implicitly_wait(15)
# First Tab
driver.get("https://www.baidu.com")
oldtab = driver.current_window_handle
print driver.title
time.sleep(3)
# Second Tab
driver.find_element_by_tag_name("body").send_keys(Keys.CONTROL + "t")
driver.get("http://www.111cn.net/")
newtab = driver.current_window_handle
print driver.title
time.sleep(3)
# Go back to First Tab
driver.find_element_by_tag_name("body").send_keys(Keys.CONTROL + Keys.PAGE_UP)
driver.switch_to_window(oldtab)
print driver.title
driver.refresh()
time.sleep(3)
# Go to Second Tab again
driver.find_element_by_tag_name("body").send_keys(Keys.CONTROL + Keys.PAGE_UP)
driver.switch_to_window(newtab)
print driver.title
time.sleep(3)
driver.close()
这个只是简单的实现了单次循环,如果要实现不停循环,加一个while True死循环就可以了。selenium 的更多帮助可以参看官方手册,也可以去我网盘里查看pdf文档 。
二、多个窗口间切换
多个窗口间切换的代码如下:
#code by www.111cn.net
import win32gui,win32com.client
#import win32con
from selenium import webdriver
import time
def Broswer(url,x,y):
browser = webdriver.Firefox()
browser.set_window_size(480, 800)
browser.get(url)
browser.set_window_position(x, y)
#browser.get('https://www.163.com')
#browser.close()
#browser.quit()
def windowEnumerationHandler(hwnd, top_windows):
if u"firefox" in win32gui.GetWindowText(hwnd).lower():
top_windows.append((hwnd, win32gui.GetWindowText(hwnd)))
Broswer('http://www.so.com',0,0)
Broswer('http://www.sogou.com',400,0)
Broswer('http://www.baidu.com',800,0)
if __name__ == "__main__":
results = []
top_windows = []
win32gui.EnumWindows(windowEnumerationHandler, top_windows)
'''for i in top_windows:
if u"notepad" in i[1].lower():
print i
#w3hd=win32gui.FindWindow('MozillaWindow',i[1])
#win32gui.MoveWindow(w3hd, 50, 50, 300, 200, True)
#0:hiddle 1:display 2:min 3:max
#win32gui.ShowWindow(w3hd,0)
#win32gui.ShowWindow(w3hd, win32con.SW_MAXIMIZE)
win32gui.ShowWindow(i[0],1)
win32gui.SetForegroundWindow(i[0])
#break'''
while True:
for i in top_windows:
#if u"firefox" in i[1].lower():
print i
time.sleep(3)
win32gui.ShowWindow(i[0],1)
shell = win32com.client.Dispatch("WScript.Shell")
shell.SendKeys('%')
win32gui.SetForegroundWindow(i[0])
shell.SendKeys("^{F5}", 0)
这里的窗口位置和大小移动是通过selenium模块实现的,win32gui 模块也可以实现该功能,具体如下:
import win32gui
# 查找状态栏窗口
shellTray = win32gui.FindWindow("Shell_TrayWnd", None)
# 显示窗口
win32gui.ShowWindow(shellTray, 1)
# 隐藏窗口
win32gui.ShowWindow(shellTray, 0)
# 更改窗口大小和位置
win32gui.MoveWindow(window, 0, 0, 1440, 900, True)
#最大化窗口
hwnd = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hwnd, win32con.SW_MAXIMIZE)
需在注意的是pywin32模块的帮助文档无通过help(模块名)查看,其单独有一个帮助文档 。
多窗口录制的视频及selenium相关的文档可以到本站的云盘获取:http://pan.baidu.com/s/1c2bXGGg
win+python+selenium实现窗口和tab切换的更多相关文章
- Python+Selenium学习--窗口切换及操作元素
场景 有时候我们在测试一个web 应用时会出现多个浏览器窗口的情况,在selenium1.0 中这个问题比较难处理.webdriver 提供了相关相方法可以很轻松的在多个窗口之间切换并操作不同窗口上的 ...
- python+selenium多窗口之间切换
#!/usr/bin/env python # coding:utf8 # author:Z time:2018/9/19 import time from selenium import webdr ...
- 用python selenium 单窗口单IP刷网站流量脚本
近期有朋友说需要增加自己网站的流量,故用python写了一个简单的脚本,配合IP池或者动态IP都可以刷,当然最爽的是单窗口单IP. 说明 作弊可耻! 环境 python3.8 + selenium + ...
- Python+selenium之窗口截图
自动化用例是由程序去执行,因此有时候打印的错误信息并不明确,如果在脚本执行错误的时候能对当前窗口截图保存,那么通过图片就可以非常直观的看出出错的原因.webdriver提供了截图函数get_scree ...
- python+selenium的frame表单切换
switch_to.frame() 切换frame switch_to.default_content() 切 ...
- python+selenium之多表单切换
在Web应用中经常会遇到fram/iframe表单嵌套页面的应用,WebDriver只能在一个页面上对元素识别与定位,对于fram/iframe表单内嵌套页面上的元素无法直接定位.这是需要通过swit ...
- 【Selenium03篇】python+selenium实现Web自动化:元素三类等待,多窗口切换,警告框处理,下拉框选择
一.前言 最近问我自动化的人确实有点多,个人突发奇想:想从0开始讲解python+selenium实现Web自动化测试,请关注博客持续更新! 这是python+selenium实现Web自动化第三篇博 ...
- python之selenium多窗口切换
前提: 在页面操作过程中有时候点击某个链接会弹出新的窗口,这就需要主机切换到新打开的窗口上.WebDriver提供了switch_to.window()方法,可以实现在不同的窗口之间切换. 内容: 以 ...
- python+selenium之多窗口切换
#打开浏览器driver = webdriver.Firefox()driver.get(url)#获取当前窗口now_handle=driver.current_window_handle # 获取 ...
随机推荐
- java后台获取参数乱码
String title = getParam("searchTitle"); title = new String(title.getBytes("iso8859-1& ...
- 阿里云IoT物联网平台入门教程
参考链接:https://www.geek-workshop.com/thread-37883-1-1.html
- const关键字的作用
1.防止被修饰的成员的内容被改变. 2.修饰类的成员函数时,表示其为一个常函数,意味着成员函数将不能修改类成员变量的值. 3.在函数声明时修饰参数,表示在函数访问时参数(包括指针和实参)的值不会发生变 ...
- 二叉查找树(Binary Search Tree)
二叉树的一个重要的应用是他们在查找中的使用. 以下是二叉查找树的查找代码 #include <stdio.h> int main() { typedef struct Node{ int ...
- python,栈的小例子
''' 1.首先确认栈的概念,先进后出 2.初始化的时候如果给了一个数组那么就要将数组进栈 ''' class Stack: def __init__(self,start=[]): self.sta ...
- OGG-01668
ERROR OGG-03517 Oracle GoldenGate Delivery for Oracle, test.prm: Conversion from character set U ...
- SpringSocial简介
⒈常用的pom依赖 <dependency> <groupId>org.springframework.social</groupId> <artifactI ...
- Cascade R-CNN论文讲解(转载)
转载链接:https://blog.csdn.net/qq_21949357/article/details/80046867 论文思想:为了解决IOU设置带来的最终的AP值,作者引入了cascade ...
- 删除元素splice、shift\pop
splice() 方法: 向/从数组中添加/删除项目,然后返回被删除的项目. splice( index位数, 数量, 新添加 ) 该方法会改变原始数组 删除数组中第一个元素 arr.shift( ...
- selenium之css定位小结
前言 大部分人在使用selenium定位元素时,用的是xpath定位,因为xpath基本能解决定位的需求.css定位往往被忽略掉了,其实css定位也有它的价值,css定位更快,语法更简洁.这一篇css ...