最新 最热

在python中求分布函数相关的包实例

此外,fit可以求分布参数的极大似然估计,包括location与scale,nnlf可以求负对数似然函数,expect可以计算函数pdf或pmf的期望值。

2020-11-05
0

Cypress系列(61)- 断言最佳实践

Cypress 命令通常具有内置的断言,这些断言将导致命令自动重试,以确保命令成功(或者超时后失败)

2020-10-26
0

linux expect 自动登录交换机保存配置的方法

./telnet.exp 192.168.0.80 admin cisco cisco

2020-10-19
0

设计模式之适配器模式

Convert the interface of a class into another interface clients expect. An adapter lets classes work together that could not otherwise because of incompatible i...

2020-08-06
0

Cypress系列(12)- Cypress 编写和组织测试用例篇 之 断言

https://www.cnblogs.com/poloyy/category/1768839.html

2020-06-09
0

GOF23种设计模式类型、描述和类图(下)

描述: 将一个类的接口变换成客户端锁期待的另一种接口,从而是原本因接口欧不匹配而无法再一起工作的两个类能够在一起工作 。

2020-02-13
0

以写代学:python 错误、异常、断言

语法错误指示软件的结构上有错误,导致不能被解释器解释或编译器无法编译。这些错误必须在程序执行前纠正。

2020-01-15
0

python3:Python 异常处理以

是处理异常公式, try 是有可能抛异常的代码块, except 抓取异常的类型, else 是指当没有抓到抛错,就运行这块代码。请看下下边的例子:

2020-01-13
0

python expect

#!/usr/bin/pythonimport pexpectfoo = pexpect.spawn('passwd mqjia')foo.expect("New UNIX password:")foo.sendline("1234567")foo.expect("Retype new UNIX passwo...

2020-01-10
0

使用expect自动登录

公司有两重账户,可以使用expect自动登录,代码如下#!/usr/bin/expect -fset ip [lindex $argv [expr $argc-1]]set user yinzihaoset host $ipset password pwd1set bot_password pwd2set...

2019-11-22
0