10 2018 档案

摘要:def is_dui_chen(st): st = str(st) for i in range(len(st) // 2): if st[i] == st[-1 - i]: return True else: return Falseprint(is_dui_chen('3ab6ba3')) 阅读全文
posted @ 2018-10-29 17:33 laosun0204 阅读(1236) 评论(0) 推荐(0) 编辑
摘要:列表中只有一个最大长度的字符串和一个最小长度的字符串 def get_ele_len(): data = ['hello', 'blue', 'fly', 'watermelon', 'sun', 'computer', 'money'] lis = [] for i in data: lis.ap 阅读全文
posted @ 2018-10-19 09:50 laosun0204 阅读(1180) 评论(0) 推荐(0) 编辑
摘要:按顺序获取key的值 data = {'a': 7, 'c': 10, 'b': 9}key = []for i in sorted(data): key.append(i[0])print(key) 按key顺序获取字典 dic = {}dict_num = {1: 2, 14: 45, 6: 1 阅读全文
posted @ 2018-10-18 17:36 laosun0204 阅读(283) 评论(0) 推荐(0) 编辑
摘要:def get_ele_len(): d = ['wanba', 'zhang23yiminlove1244', 'liuxiaokang', 'feilong', 'cuijiaming', 'wanghongxinglove12345', 'hongxing', 'chenxin', 'zhan 阅读全文
posted @ 2018-10-18 16:54 laosun0204 阅读(4341) 评论(0) 推荐(0) 编辑
摘要:# 第一种方法:用set方法 a = [1, 1, 2, 2, 3, 4, 5, 5, 5, 6, 7, 6]b = set(a)print(b) # 第二种方法:列表生成式去重 list1 = [1, 1, 2, 2, 3, 4, 5, 5, 5, 6, 7, 6]list2 = [][list2 阅读全文
posted @ 2018-10-16 10:00 laosun0204 阅读(278) 评论(0) 推荐(0) 编辑
摘要:python安装时要把两个目录放到环境变量里:1、python的安装目录2、python安装目录下面的scripts目录 pycharm配置: 按照File->Settings->Editor->Colors & Fonts->Fonts这个路径修改字体和颜色,先点击Save As,然后在修改,修改 阅读全文
posted @ 2018-10-08 09:47 laosun0204 阅读(1015) 评论(0) 推荐(0) 编辑
摘要: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/ 阅读全文
posted @ 2018-10-07 14:13 laosun0204 阅读(350) 评论(0) 推荐(0) 编辑
摘要:import yagmail# 发送邮件,user为发送邮件的邮箱名,password为邮箱授权码,host为邮箱服务器,cc为抄送的邮箱# to为接收者的邮箱多个邮箱用list,subject为邮件标题,contents为邮件正文,attachments为邮件带的附件(即生成的最新的报告)clas 阅读全文
posted @ 2018-10-06 23:15 laosun0204 阅读(161) 评论(0) 推荐(0) 编辑
摘要:import pymysqlimport redisimport requestsimport hashlibimport osfrom lib.path import APP_REPORTclass MyMysql(object): def __init__(self, host, port, u 阅读全文
posted @ 2018-10-06 23:12 laosun0204 阅读(151) 评论(0) 推荐(0) 编辑
摘要:import unittestfrom page.thread_page import Pageimport timeclass ThreadDemo(unittest.TestCase): def __repr__(self): # _repr_函数,对应repr(object)这个函数,返回一个 阅读全文
posted @ 2018-10-06 22:28 laosun0204 阅读(139) 评论(0) 推荐(0) 编辑
摘要:from lib.appController import driver_queuefrom lib.pyapp import Pyappfrom lib.logger import loggerclass BasePage(object): def __init__(self, driver=No 阅读全文
posted @ 2018-10-06 22:26 laosun0204 阅读(172) 评论(0) 推荐(0) 编辑
摘要:import osfrom lib.path import APP_PATHfrom lib.path import APP_PICTURE_PATHimport yamlfrom lib.logger import loggerclass Tool(object): @property def a 阅读全文
posted @ 2018-10-06 22:22 laosun0204 阅读(150) 评论(0) 推荐(0) 编辑
摘要:from selenium import webdriverfrom selenium.webdriver.common.action_chains import ActionChainsfrom selenium.webdriver.support import expected_conditio 阅读全文
posted @ 2018-10-06 22:13 laosun0204 阅读(191) 评论(0) 推荐(0) 编辑
摘要:from lib.pyse import Pysefrom selenium.webdriver.support import expected_conditions as ECfrom selenium.webdriver.support.ui import WebDriverWaitfrom a 阅读全文
posted @ 2018-10-06 22:11 laosun0204 阅读(708) 评论(0) 推荐(0) 编辑
摘要:import osBASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))# 配置文件的信息APP_PATH = os.path.join(BASE_PATH, 'conf', 'appController.yml 阅读全文
posted @ 2018-10-06 21:59 laosun0204 阅读(162) 评论(0) 推荐(0) 编辑
摘要:from logging import handlersimport loggingfrom lib.path import SYSTEM_PATHclass Logger(object): __instance = None def __new__(cls, *args, **kwargs): i 阅读全文
posted @ 2018-10-06 21:58 laosun0204 阅读(263) 评论(0) 推荐(0) 编辑
摘要:from lib.tool import Toolfrom appium import webdriverfrom lib.logger import loggerfrom lib.path import LOGPATH, APPPICTUREPATHimport osimport timeimpo 阅读全文
posted @ 2018-10-06 21:54 laosun0204 阅读(234) 评论(0) 推荐(0) 编辑
摘要:tester:# 通用的配置 # appium专用输入法 unicodeKeyboard: True # 结束运行后重置为原来的输入法 resetKeyboard: True # 是否清除数据启动 noReset: False# app # appPackage: com.android.brows 阅读全文
posted @ 2018-10-06 21:49 laosun0204 阅读(302) 评论(0) 推荐(0) 编辑
摘要:from lib.path import APP_CASE, APP_REPORT, EMAIL_INFOimport unittestfrom lib.appController import Controllerfrom BeautifulReport import BeautifulRepor 阅读全文
posted @ 2018-10-06 21:46 laosun0204 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-10-06 21:41 laosun0204 阅读(293) 评论(0) 推荐(0) 编辑