自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 网页自动化编写和校验样例

from selenium import webdriver import unittest import time #打开google浏览器 wangyingTemplate = webdriver.Chrome() wangyingTemplate.maximize_window() #打开嗨格式首页网址 wangyingTemplate.get("https://www.wangying.cn") time.sleep(2) .

2021-08-12 14:13:10 82

原创 Selenium方法使用教程

获取ID、位置、tag_name、宽高 from selenium import webdriverimport timebrowser = webdriver.Chrome()browser.get('http://www.mwenting.com/')search_input = browser.find_element_by_class_name('search-submit')print(search_input.id)print(search_input.location)print(searc

2021-08-12 14:07:06 127

原创 Python自动化搭建与安装手册(全)

软件准备 下载python地址:https://www.python.org/downloads/ 2.JDK安装步骤:https://blog.csdn.net/xuejiaguniang/article/details/86331557 安装Python 安装python的时候,记得在安装栏选择把python加到path的环境变量,这样python安装的时候,会自动安装setuptool 和pip。 安装selenium 在线安装:运行cmd,执行命令pipin...

2021-08-12 13:58:00 444

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除