摘要:
#-*- coding:utf-8 -*- from selenium import webdriver from selenium.webdriver.support.wait import WebDriverWait #隐式等待方法1 def credit1(username): driver = webdriver.Chrome() driver.get("http:/... 阅读全文
摘要:
from ProjVar.var import * import smtplib from email import encoders from email.mime.base import MIMEBase from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email... 阅读全文
摘要:
1.reverse列表反转排序,无返回值 x = [1,5,2,3,4] x.reverse() 输出:[4, 3, 2, 5, 1] 2.sort列表排序,无返回值 正序: a = [5,7,6,3,4,1,2] a.sort() 输出:[1, 2, 3, 4, 5, 6, 7] 逆序: a.so 阅读全文
摘要:
兼容测试是app能否在不同品牌的手机上进行安装卸载等测试。 适配测试是app能否在不同尺寸、不同分辨率的终端上能否正常显示的测试。 阅读全文