51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#找不到文件
linux下安装mysql(rpm文件安装)
数据库包下载:https://www.mysql.com/downloads/在GPL开原协议的社区开源版里边下载 我们用mysqlcommunityserver里边的 其中workbench是客户端工具 MySQLCluster...
代码星球
·
2021-02-13
安装
linux
mysql
rpm
文件
python自定义方法处理日志文件
从命令行界面拷贝的内容包含过个">>>",函数的作用是用正则把每两个">>>"之间的字符取出来,然后把包含“Traceback...”的字符的内容去掉,再写到另一个文件中代码:#coding=utf-8importreimportosdefclearContent(fileName)...
代码星球
·
2021-02-13
python
自定义
方法
处理
日志
pycharm 设置文件编码的位置:Editor-->File Encodings
打开设置-->Editor-->FileEncodings ...
代码星球
·
2021-02-13
pycharm
设置
文件
编码
位置
查看firefox浏览器 驱动geckodriver.exe文件的版本号的方法,以及下载链接
1-进入到geckodriver.exe文件的目录: 2-在路径栏下输入cmd: 3-命令行界面下输入:geckodriver.exe-h可以看到文件的帮助信息,其中第一行就列出了版本号为0.19.1 4-geckodriver驱动文件历史版本的下载链接: ...
代码星球
·
2021-02-13
查看
firefox
浏览器
驱动
geckodriver.exe
python ConfigParser读取配置文件,及解决报错(去掉BOM)ConfigParser.MissingSectionHeaderError: File contains no section headers的方法
先说一下在读取配置文件时报错的问题--ConfigParser.MissingSectionHeaderError:Filecontainsnosectionheaders问题描述:在练习ConfigParser读取配置文件时,cmd一直报一个错:ConfigParser.MissingSectionHeaderErr...
代码星球
·
2021-02-13
python
ConfigParser
读取
配置文件
解决
python webdriver 测试框架-数据驱动json文件驱动的方式
数据驱动json文件的方式test_data_list.json:[ "邓肯||蒂姆", "乔丹||迈克尔", "库里||斯蒂芬", "杜兰特||凯文", &nb...
代码星球
·
2021-02-13
驱动
python
webdriver
测试
框架
python webdriver 测试框架-数据驱动txt文件驱动,带报告的例子
数据驱动txt文件驱动的方式,带报告data.txt:gloryroadtest||光荣之路摔跤爸爸||阿米尔超人||电影 data_driven_by_txt_file.py:#encoding=utf-8fromseleniumimportwebdriverimporttimewithopen(u"e:\...
代码星球
·
2021-02-13
驱动
python
webdriver
测试
框架
python webdriver 登录163邮箱发邮件加附件, 外加数据和程序分离,配置文件的方式
配置文件:UiObjectMapSendMap.ini用来存放配置信息 GetOptionSendMail.py用来读取配信息#encoding=utf-8fromselenium.webdriver.support.uiimportWebDriverWaitimportConfigParseri...
代码星球
·
2021-02-13
python
webdriver
登录
邮箱
邮件
python webdriver api-读取、设置配置文件
文件结构:db.ini放置db信息的配置文件文件中[gloryroad]是section信息下边的dbname等是option信息UiObjectMap.ini放置访问web的配置信息 配置用到的xpath元素信息-做到数据和程序的分离 第一步读取配置文件把配置文件放到当前脚本所在目录下...
代码星球
·
2021-02-13
python
webdriver
api-
读取
设置
python webdriver api-右键另存下载文件
右键另存下载文件先编辑SciTE脚本: ;ControlFocus("title","text",controlID);表示将焦点切换到标题为title窗体中的controlID上;Edit1表示第一个可以编辑的实例;title表示弹出的Window窗口标题,不同浏览器的标题可能不一样ControlFocus...
代码星球
·
2021-02-13
python
webdriver
api-
右键
另存
python webdriver api-上传文件的三种方法
上传文件:第一种方式,sendkeys(),最简单的#encoding=utf-8fromseleniumimportwebdriverimportunittestimporttimeimporttracebackfromselenium.webdriver.support.uiimportWebDriverWaitf...
代码星球
·
2021-02-13
python
webdriver
api-
上传
文件
python excel操作 练习:#生成一个excel文件,生成3个sheet,每个sheet的a1写一下sheet的名称。每个sheet有个底色
练习:#生成一个excel文件,生成3个sheet,每个sheet的a1写一下sheet的名称。每个sheet有个底色#coding=utf-8 fromopenpyxlimportWorkbookwb=Workbook()ws1=wb.create_sheet('sheet1',0)ws2=wb.creat...
代码星球
·
2021-02-12
sheet
excel
生成
每个
python
python 文件操作,os.path.walk()的回调函数打印文件名
#coding=utf-8importosdeffind_file(arg,dirname,files): #foriinarg: #printi forfileinfi...
代码星球
·
2021-02-12
python
文件
操作
os.path.walk
回调
python 文件操作 练习:取得文件的最后存取时间
#coding=utf-8importosimporttimefile_atime=int(os.path.getatime('d:\a.txt'))print"file_atime:",file_atimetime_arr=time.localtime(file_atime)print'time_arr:',time...
代码星球
·
2021-02-12
文件
python
操作
练习
取得
python 文件操作 练习:把一个目录下的所有文件名,打印一下,不要包含后缀名
#coding=utf-8importosos.chdir('d:\test2')file_list=os.listdir('.')print"file_list:",file_listprint"*"*100forfileinfile_list: printos.path.split...
代码星球
·
2021-02-12
python
文件
操作
练习
一个
首页
上一页
...
47
48
49
50
51
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他