logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

idea中记住git的用户名和密码命令

git config --global credential.helper store

使用postman发送https请求:证书录入方法

#使用postman发送https请求:证书录入方法1.打开postman后:File—>Settings2.确保这个:General这一栏的SSL certificate verification ,开关关闭3.certificates这一栏上传对应的证书和私钥即可

#postman#https
python写selenium脚本实现自动登录(自动输入用户名和密码)

from selenium import webdriverimport os,timechromedriver = “C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe” #这里写本地的chromedriver 的所在路径os.environ[“webdriver.Chrome.driver”] = chrom...

#python
安装Pillow依旧出现ImportError: No module named 'PIL'解决方法

ImportError: No module named 'PIL’错误的解决方法:安装Pillow:pip install Pillow2.安装成功后依旧显示 ImportError: No module named 'PIL’的话(1)卸载pillow:pip uninstall pillow(2)安装pillow-PIL:File–>settings–>P...

#pillow
python之WebDriver API知识总结

#WebDriver API#4.1从定位元素开始:#id定位find_element_by_id(“su”)#name定位find_element_by_name(‘wd’)#class定位find_element_by_class_name(s_ipt)#tag定位#通过tag识别某个元素的概率很低,tag包括:link定位find_element_by_link_tex...

#python
python--selenium学习总结(快速入门)

1.安装1.1安装python1.2安装pyCharm1.3分别下载谷歌浏览器,火狐浏览器,ie浏览器的驱动choredriver.exe,geckodriver.exe,IEDriverServerxxx.zip(分别安装到相应路径下)2.快速入门2.1简单用例如果你已经安装好了selenium,你可以把下面的python代码拷贝到你的编辑器中from selenium impor...

#python#selenium
到底了