- 博客(55)
- 收藏
- 关注
转载 postman测试案例的值判断的一些写法
//判断状态码pm.test("状态码是200", function () { pm.response.to.have.status(200);});//判断json指定key等于指定值pm.test("msg等于账户与密码不匹配", function () { var jsonData = pm.response.json(); pm.expect(jsonDat...
2019-05-08 16:44:41
2615
转载 win10系统 + python语言selenium安装和chrome浏览器驱动
https://blog.youkuaiyun.com/yhpapple/article/details/79977256
2019-02-23 19:14:30
308
转载 selenium常用断言
assertLocation:(判断当前是在正确的页面)assertTitle:(检查当前页面的 title 是否正确)assertValue:(检查 input 的值, checkbox 或 radio,有值为”on”无为”off”)assertSelected:(检查 select 的下拉菜单中选中是否正确)assertSelectedOptions:(检查下拉菜单中的选项的是否正确...
2019-01-03 13:57:15
2738
转载 Python 获取被调用函数名称,所处模块,被调用代码行
# 获取被调用函数名称print(sys._getframe().f_code.co_name) # 获取被调用函数在被调用时所处代码行数print(sys._getframe().f_back.f_lineno) # 获取被调用函数所在模块文件名print(sys._getframe().f_code.co_filename)...
2018-10-23 13:56:09
11461
2
转载 Python logging同时输出到屏幕和文件
https://www.xnathan.com/2017/03/09/logging-output-to-screen-and-file/
2018-10-23 11:29:23
3646
1
转载 Python+Selenium3系列教程
https://blog.youkuaiyun.com/u011541946/article/category/6788788/1
2018-10-08 18:00:53
8224
转载 Selenium Webdriver元素定位的八种方式
https://my.oschina.net/fairy1674/blog/1238814
2018-09-19 15:28:56
872
转载 当你在浏览器地址栏输入一个URL后回车,将会发生的事情?
https://blog.youkuaiyun.com/wuhenliushui/article/details/20038819/
2018-09-14 14:03:33
162
原创 selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary
python + selenium 报错:selenium.common.exceptions.WebDriverException: Message: unknown error: cannot find Chrome binary原因:chromedriver找不到chrome原来的写法:self.browser = webdriver.Chrome()解决方法: ...
2018-09-10 19:15:46
1432
转载 PEP8
PEP全称Python Enhancement Proposalshttps://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_style_rules/
2018-09-04 20:47:03
316
转载 Mac 下将 Python2升级到 Python3
https://blog.youkuaiyun.com/luoyayun361/article/details/81607829
2018-09-02 23:10:17
981
转载 50条工作中绝对要掌握的sql(含有答案)
https://blog.youkuaiyun.com/tangdong3415/article/details/72844753
2018-07-23 11:17:08
399
转载 chrome插件开发入门示例
https://blog.youkuaiyun.com/coderma/article/details/52562890?locationNum=7https://www.cnblogs.com/lvchenfeng/p/5080179.html
2018-07-06 11:43:12
2101
转载 dubbo中添加filter
https://blog.youkuaiyun.com/yang292292/article/details/51883331
2018-06-20 19:21:35
1108
转载 java调用http接口
import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.MalformedURLException;import java.net.URL;URL dubboReqUrl = null;try { dubboReqUrl = new UR...
2018-04-28 17:23:01
338
转载 sql modify与change的区别
https://blog.youkuaiyun.com/running_nz/article/details/53501832
2018-04-28 17:20:09
3953
转载 同一终端添加多个git账户
https://segmentfault.com/a/1190000010680085config中各字段说明如下:Host oschina (别名,可以使用这个别名做克隆和更新,例如git clone oschina:chping/test.git) HostName git.oschina.net (服务器地址) user git (`git`@git.oschin...
2018-04-20 11:11:32
275
转载 dubbo filter的使用
https://blog.youkuaiyun.com/mj158518/article/details/47379799
2018-04-17 13:50:38
539
原创 ContextLoaderListener监听器的作用及applicationContext.xml的文件位置
ContextLoaderListener监听器的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。applicationContext.xml的文件位置就可以有两种默认实现:第一种:直接将之放到/WEB-INF下,之在web.xml中声明一个listener;第二种:将之放到classpath下,但是此时要在web.xml中加入<context-param&...
2018-03-13 17:17:21
463
转载 十大Intellij IDEA快捷键
http://blog.youkuaiyun.com/dc_726/article/details/42784275
2018-03-12 13:42:55
130
转载 SSM(SPRING+SPRINGMVC+MYBATIS)框架搭建详细教程【附源代码DEMO】
https://www.cnblogs.com/xiaoL/p/7753130.html
2018-03-12 13:42:16
447
转载 web.xml配置详解
http://blog.youkuaiyun.com/guihaijinfen/article/details/8363839
2017-07-21 17:36:30
179
转载 spring+springMVC+Mybatis主流框架maven的pom.xml配置参考
http://blog.youkuaiyun.com/u012012240/article/details/51376655
2017-06-22 15:22:53
274
原创 sublime好看的字体设置
{"color_scheme": "Packages/Theme - Spacegray/base16-ocean.dark.tmTheme","font_face": "微软雅黑","font_options":["no_bold","no_italic","no_antialias","gray_antialias"],"font_size": 12,
2017-06-01 19:09:40
19467
1
转载 JUnit详解系列
https://my.oschina.net/pangyangyang/blog/144495https://my.oschina.net/pangyangyang/blog/146015https://my.oschina.net/pangyangyang/blog/153320
2017-04-19 11:34:58
426
转载 Java Annotation认知(包括框架图、详细介绍、示例说明)
http://www.cnblogs.com/skywang12345/p/3344137.html
2017-04-18 18:34:49
201
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人