Selenium中web三大切换(二)之iframe窗口及Alert(弹窗)切换 ...
分类:
Web程序 时间:
2020-03-09 00:58:55
阅读次数:
247
4.15 操作 Cookie 有时我们需要验证浏览器中的 Cookie 是否正确,因为基于真实的 Cookie 是无法通过白盒测试和集成测试的。WebDriver 提供了操作 Cookie 的相关方法,可以读取、添加和删除 Cookie。 WebDriver 操作 Cookie 的方法如下。● ge ...
1、强制等待:sleep() from time import sleep sleep(3) #等待3秒 ****官方不推荐这样的方法,使用太多的sleep会影响脚本运行速度 2、隐式等待:implicitly_wait() driver.implicitly_wait(10) #隐式等待10秒 由 ...
分类:
Web程序 时间:
2020-03-06 10:43:06
阅读次数:
100
+++++++++++++++++++++++++++++++++++++++标题:expect 脚本的自定义变量和位置变量 时间:2020年3月3日 +++++++++++++++++++++++++++++++++++++++ 自定义变量: set ip 192.168.100.100 set ...
分类:
其他好文 时间:
2020-03-03 21:07:47
阅读次数:
183
++++++++++++++++++++++++++++++++++++++++ 标题:expect 免交互配置互信 时间:2020年3月3日 ++++++++++++++++++++++++++++++++++++++++ #/usr/bin/env expect set ip 192.168.1 ...
分类:
其他好文 时间:
2020-03-03 20:43:19
阅读次数:
68
大厂面试官最常问的@Configuration+@Bean(JDKConfig编程方式)案例分享
分类:
其他好文 时间:
2020-02-28 22:35:26
阅读次数:
66
### 报错/ERROR: ```opendr/contexts/OSMesa/include/GL/glext.h:5794:21: note: expected ‘const GLchar ** {aka const char **}’ but argument is of type ‘char ...
分类:
编程语言 时间:
2020-02-27 23:28:09
阅读次数:
301
断言1:响应结果是 200 断言2:返回的主体中包含什么 断言3:返回中的某个值是:XX pm.test("响应结果中的city对应的值是:北京", function () { var jsonData = pm.response.json(); pm.expect(jsonData.city).t ...
分类:
其他好文 时间:
2020-02-25 14:52:04
阅读次数:
62
转自:https://www.cnblogs.com/williamjie/p/9849996.html https://www.cnblogs.com/omak/p/10211449.html HTTP协议状态码,是指在HTTP协议运作中由客户端发出请求连接,服务端建立连接,客户端发出HTTP请求 ...
分类:
Web程序 时间:
2020-02-20 15:28:04
阅读次数:
438
1 """ 2 Given a string, find the length of the longest substring without repeating characters. 3 Example 1: 4 Input: "abcabcbb" 5 Output: 3 6 Explanat ...
分类:
其他好文 时间:
2020-02-19 21:02:41
阅读次数:
53