上一页 1 ··· 6 7 8 9 10
  2022年1月16日
摘要: # 浏览器的基本操作 close/quitfrom selenium import webdriverimport time# 创建 Chrome 浏览器实例driver = webdriver.Chrome()# 访问url页面地址driver.get("https://www.baidu.com 阅读全文
posted @ 2022-01-16 14:55 peijiao 阅读(533) 评论(0) 推荐(0) 编辑
摘要: # 浏览器基本操作 back/forwardfrom selenium import webdriverimport time# 创建 Chrome 浏览器实例driver = webdriver.Chrome()# 访问url页面地址1driver.get("https://www.baidu.c 阅读全文
posted @ 2022-01-16 14:52 peijiao 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 要使用 iperf 测试网络的性能,您需要两台计算机,一台作为服务器,一台作为客户端,这将帮助您测试两台主机之间的网段。特别注意的是两台计算机的网口一定是同样的网口,测试的数据才是准确的,我之前测试的时候服务器端网口是万兆的,客户端用的是千兆的,所以测试的结果都是千兆网速。准备计算机和安装软件的步骤 阅读全文
posted @ 2022-01-16 14:39 peijiao 阅读(7147) 评论(0) 推荐(0) 编辑
  2021年12月28日
摘要: 一、环境迁移 我们写的代码在其他电脑或者其他同事下载下来后总会有各种各样的问题,需要做一下环境迁移的步骤 打开cmd cd 到项目根目录 执行一下的命令 pip freeze >requirements.txt、命令执行后就会生成一个requirements的文件,里面会显示项目所需要的环境 生成依 阅读全文
posted @ 2021-12-28 11:39 peijiao 阅读(731) 评论(0) 推荐(0) 编辑
  2021年12月22日
摘要: 一、xpath 属性定位: 1、id: driver.find_element_by_xpath("//*[@id='kw']").send_keys("python") # 通过xpath id定位并写入python name: driver.find_element_by_xpath("//*[ 阅读全文
posted @ 2021-12-22 11:12 peijiao 阅读(407) 评论(0) 推荐(0) 编辑
  2021年12月18日
摘要: # coding:utf-8# 第一步导入webdriver模块from selenium import webdriver# 导入time模块import time# 第二步打开浏览器driver = webdriver.Chrome()# driver = webdriver.le le浏览器用 阅读全文
posted @ 2021-12-18 16:59 peijiao 阅读(172) 评论(0) 推荐(0) 编辑
  2021年12月1日
摘要: # 针对整个.py文件(module 模块)只执行一次def setup_module(): print("整个module用例之前,只执行一次")def teardown_module(): print("整个module用例之后,只执行一次")def setup_function(): prin 阅读全文
posted @ 2021-12-01 10:33 peijiao 阅读(63) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10