摘要:
import time import os from datetime import datetime from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait def get_clear_browsing_button(driver): """Find the "CLE... 阅读全文
摘要:
import time import os from datetime import datetime from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait def get_clear_browsing_button(driver): """Find the "CLE... 阅读全文
摘要:
第一步 安装Python并设置环境变量 1.安装python: python下载地址https://www.python.org/,建议用2.7.x版本 2.设置环境变量: 方法如下所示 第二步 安装Robot framework 下载地址如下:https://pypi.python.org/pyp 阅读全文
摘要:
近期做网页自动化用到内容小结 1、打开浏览器1)打开默认配置的浏览器from selenium import webdriverdriver = webdriver.Firefox()"""chrome浏览器driver = webdriver.Chrome()""" 2)带配置打开浏览器from 阅读全文
摘要:
先在首页上执行一段 JavaScript 脚本,将页面的滚动条拖到最下方,然后再拖回顶部,最后才截图。这样可以解决那种按需加载图片的情况 以下代码为转载别处博客改造后的,有chrome和ff两种浏览器。 由于webdriver.chrom只能截取当前页面图片,不能截取整个网页图片,因此额外使用web 阅读全文
摘要:
1、yum install -y bind bind-chroot bind-utils 2、编辑DNS主配置文件 vim /etc/named.conf 修改如下标红色处即可: options { listen-on port 53 { any; }; listen-on-v6 port 53 { 阅读全文
摘要:
【转载至:http://blog.csdn.net/defectfinder/article/details/49819215】 一、简单介绍 SikuliIDE和Sikuli Script就是现在的SikuliX,最新版本是SikuliX1.1.0, 部分兼容Sikuli JAVA API,支持P 阅读全文
摘要:
【目的】 频繁刷新某一浏览器页面,小测试一下加载性能,或者打开的文件是否及时关闭,会不会导致服务器奔溃 【小工具】 新建txt,输入以下内容,并保存为html的格式,然后在浏览器中打开,则会定时刷新指定的URL 阅读全文
摘要:
第一步 安装Python并设置环境变量 1.安装python: python下载地址https://www.python.org/,建议用2.7.x版本 2.设置环境变量: 方法如下所示 第二步 安装Robot framework 下载地址如下:https://pypi.python.org/pyp 阅读全文
摘要:
现象:win7安装LR可以正常使用,将win7升级到win10之后,运行场景之后报错:Error (-81024): LR_VUG: The 'QTWeb' type is not supported on 'WIN32' platform问题原因:因为win8或者win10和loadrunner的 阅读全文
摘要:
【转自:http://blog.csdn.net/r455678/article/details/52993765】 1、对固定日期进行操作,增加或减去单位时间或者时间段 2、对两个时间段进行操作 3、对时间格式转化,获取时间戳。 4、从完整时间中取指定年月日等 5、对时间类型进行格式化 6、获取当 阅读全文
|