摘要:
从个人的测试岗位面试经历中看,百分之八九十的面试官都会问“熟悉哪些Linux命令?会写Shell脚本吗?” 常用的Linux命令一般都能答上几个,但如果面试官问的太具体参数的用法,回答的时候会有点心里没底;Shell脚本就更不用说了,基本没动手写过。 为了能更好的适应工作,后续会学习Linux&Sh 阅读全文
摘要:
【代码】 # -*- coding:UTF-8 -*- import requests if __name__ == '__main__': target = 'https://unsplash.com/' req = requests.get(url=target) print(req.text) 阅读全文
摘要:
【代码】 # -*- coding:UTF-8 -*- import requests if __name__ == '__main__': target = 'https://unsplash.com/' req = requests.get(url=target) print(req.text) 阅读全文
摘要:
【环境信息】 python:3.6.5 平台:win7 selenium:3.11.0 selenium server:selenium-server-standalone-3.11.0.jar jdk:1.7.0_55 【操作】 命令行启动 selenium server:java -jar se 阅读全文
摘要:
【场景】 通过126邮箱向QQ邮箱发送HTML格式邮件 【代码1】 from email.mime.text import MIMEText from email.header import Header import smtplib #发送邮件服务器 smtpserver = 'smtp.126. 阅读全文
摘要:
【代码】 if __name__=="__main__": suite = unittest.TestSuite() suite.addTest(Baidu("test_baidu")) url ="./"+ time.strftime("%Y-%m-%d %H:%M:%S") + " result 阅读全文
摘要:
【流程描述】 登录126邮箱,退出 【代码】 #coding=utf-8 from selenium import webdriver driver = webdriver.Firefox() #driver = webdriver.Ie() driver.implicitly_wait(10) d 阅读全文
摘要:
【版本】 selenium:3.11.0 firefox:59.0.3 (64 位) python:3.6.5 【代码】 1 #coding=utf-8 2 from selenium import webdriver 3 4 driver = webdriver.Firefox() 5 drive 阅读全文