首先这次使用的webDriver for Firefox的 由于项目的原因,需要在测试的时候加载Firebug和使用vpn,加载代理 Firefox 加载代理,可以从FF菜单上看,代理分为好几种 我这里使用的是type 为2 的情况 FirefoxProfile profile = new FirefoxProfile(); profile.setPreference("network.proxy.type", 2); profile.setPreference("netwo…
上一次我实测FF webdriver 加载firefoxhttp://www.cnblogs.com/tobecrazy/p/3997375.html 那么问题就来了,既然能加载firebug能否在运行时候直接激活firebug 效果如下: 针对这个情况,我们有两种solutions 方法1:使用firebug的快捷键F12激活firebug 不过这需要使用Actions class 的sendKeys method,使用sendKeys方法别忘了添加perform() 方法 否则不执行的 Fi…
js不需要知道图片宽高的懒加载方法 懒加载是如何实现的? - 简书https://www.jianshu.com/p/e86c61468285找到一个不需要知道图片宽高的懒加载方法了(经过实际测试,不加宽高仍然是无法正常加载的,设置height:auto,height:100%,仍然显示高度为0) dinbror/blazy: Hey, be lazy! bLazy.JS is a lightweight pure JavaScript script for lazy loading and m…
一:下载 下载地址是:http://docs.seleniumhq.org/download/…
一:下载 下载地址是:http://docs.seleniumhq.org/download/…
做seleniumUI自动化关于选用哪个浏览器方面,对于我来说,火狐浏览器只是用于定位元素,因为有firebug(注意高版本的火狐已经安装不了这个插件了),而真正执行自动化脚本用的是谷歌,感觉谷歌的速度还是比火狐快点,个人感觉而已.大家都知道,selenium默认打开的是一个干净的浏览器窗口,接下来我讲解执行脚本时怎么加载浏览器的配置文件. 因为我用的是谷歌,所以只写谷歌浏览器的方法,至于火狐的方法网上一搜便知. #!/usr/bin/python3# -*- coding: utf-8 -*-…
一.隐形加载等待: file:///C:/Users/leixiaoj/Desktop/test.html 该页面负责创建一个div <html> <head> <title>Set Timeout</title> <style> .red_box {background-color: red; width = 20%; height:100px; border: none;} </style> <script> func…
#encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains from selenium.common.exceptions import TimeoutException from selenium.webdriver.common.keys import Keys class setPageLoadTime(unitt…
1. PageLoadStrategy : 当调用driver.get("https://xxxx.xxx.xxx")来访问某页面时,get方法通常会阻塞浏览器直到页面完全加载后才执行后面的动作,若一个页面加载过慢,则会导致get方法一直阻塞.有时候希望页面在加载过程中就开始检测元素是否存在,而不是等到页面加载完了才开始检测,想要实现这个效果,可以用ChromeOptions类下的setPageLoadStrategy方法(Java,Chrome浏览器): import org.ope…
from selenium import webdriver import os import re class GetPage: def __init__(self, url_path): self.url_path = url_path self.driver = webdriver.Chrome() self.urls = {} self.url_flag = False self.driver.set_page_load_timeout(1) self.driver.set_script…