上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页

2020年4月3日

摘要: 注意:qq的密码是qq开启smtp时候给的授权码! 参考:https://www.liaoxuefeng.com/wiki/1016959663602400/1017790702398272 发送简单的邮件: import smtplib from email.mime.text import MI 阅读全文

posted @ 2020-04-03 10:32 橙子j 阅读(173) 评论(0) 推荐(0) 编辑

2020年4月1日

摘要: https://www.jianshu.com/p/96e39cc75299 这个链接有非常详细的全部步骤 使用pycharm时无法生成测试报告的问题在用Ctrl+Shift+F10执行脚本后,发现没有在本地生成测试报告,经分析,程序执行unittest后,没有再执行后面的程序,也就没有再生存测试报 阅读全文

posted @ 2020-04-01 17:12 橙子j 阅读(273) 评论(0) 推荐(0) 编辑

摘要: http://www.testclass.net/selenium_python/select from selenium import webdriver from selenium.webdriver.support.select import Select from time import s 阅读全文

posted @ 2020-04-01 16:35 橙子j 阅读(175) 评论(0) 推荐(0) 编辑

2020年3月26日

摘要: txt文件 textFile=open(r'C:\Users\JChen46\Documents\info.txt') lines=textFile.readlines() textFile.close() for line in lines: username = line.split(',')[ 阅读全文

posted @ 2020-03-26 11:26 橙子j 阅读(6726) 评论(0) 推荐(1) 编辑

摘要: https://www.cnblogs.com/logon/p/3748020.html select * from table1 left join table2 on table1.id=table2.id 两个表dg1和dg2 外连接 left join,right join分别是left o 阅读全文

posted @ 2020-03-26 10:27 橙子j 阅读(231) 评论(0) 推荐(0) 编辑

2020年3月25日

摘要: get_cookies():获得所有cookie信息 get_cookie(name):返回字典key为name的cookie信息 add_cookie(cookie_dict):添加cookie,“cookie_dict”字典对象,含有key和value delete_cookie(name,op 阅读全文

posted @ 2020-03-25 09:36 橙子j 阅读(213) 评论(0) 推荐(0) 编辑

2020年3月24日

摘要: js="window.scrollTo(100,450)" driver.execute_script(js) from time import sleep from selenium import webdriver driver=webdriver.Chrome() driver.get("ht 阅读全文

posted @ 2020-03-24 17:36 橙子j 阅读(150) 评论(0) 推荐(0) 编辑

摘要: http Content-Type对照表 https://tool.oschina.net/commons/ Firefox下载设置如下: about:config可以查看下面设置的参数 from selenium import webdriver import os fp=webdriver.Fi 阅读全文

posted @ 2020-03-24 16:08 橙子j 阅读(694) 评论(0) 推荐(0) 编辑

摘要: os.system(r"C:\Users\JChen46\Desktop\testUpload.exe") 加个r就是告诉python不要转义 或者 os.system("C:\\Users\\JChen46\\Desktop\\testUpload.exe") 阅读全文

posted @ 2020-03-24 14:27 橙子j 阅读(2685) 评论(0) 推荐(0) 编辑

摘要: 参考:https://www.cnblogs.com/yufeihlf/p/6179547.html 一、绝对路径 os.path.abspath(path):返回path的绝对路径 file_path='file:///'+os.path.abspath('upfile.html') driver 阅读全文

posted @ 2020-03-24 10:43 橙子j 阅读(138) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页