摘要:
python安装时要把两个目录放到环境变量里:1、python的安装目录2、python安装目录下面的scripts目录 pycharm配置: 按照File->Settings->Editor->Colors & Fonts->Fonts这个路径修改字体和颜色,先点击Save As,然后在修改,修改 阅读全文
摘要:
linux下安装jmeter步骤: 1、通过ftp将上传到Linux的root目录下 2、修改权限,chmod -R 777 jdk-6u45-linux-i586.bin 3、安装jdk命令:在root目下输入./ jdk-6u45-linux-i586.bin 4、配置环境变量:vi /etc/ 阅读全文
摘要:
import yagmail# 发送邮件,user为发送邮件的邮箱名,password为邮箱授权码,host为邮箱服务器,cc为抄送的邮箱# to为接收者的邮箱多个邮箱用list,subject为邮件标题,contents为邮件正文,attachments为邮件带的附件(即生成的最新的报告)clas 阅读全文
摘要:
import pymysqlimport redisimport requestsimport hashlibimport osfrom lib.path import APP_REPORTclass MyMysql(object): def __init__(self, host, port, u 阅读全文
摘要:
import unittestfrom page.thread_page import Pageimport timeclass ThreadDemo(unittest.TestCase): def __repr__(self): # _repr_函数,对应repr(object)这个函数,返回一个 阅读全文
摘要:
from lib.appController import driver_queuefrom lib.pyapp import Pyappfrom lib.logger import loggerclass BasePage(object): def __init__(self, driver=No 阅读全文
摘要:
import osfrom lib.path import APP_PATHfrom lib.path import APP_PICTURE_PATHimport yamlfrom lib.logger import loggerclass Tool(object): @property def a 阅读全文
摘要:
from selenium import webdriverfrom selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.support import expected_conditio 阅读全文
摘要:
from lib.pyse import Pysefrom selenium.webdriver.support import expected_conditions as ECfrom selenium.webdriver.support.ui import WebDriverWaitfrom a 阅读全文
摘要:
import osBASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))# 配置文件的信息APP_PATH = os.path.join(BASE_PATH, 'conf', 'appController.yml 阅读全文