摘要:
import ospath = os.path.join(os.path.dirname(__file__), 'bbc_test.yaml').replace('\\','/')print path 阅读全文
摘要:
-m 标记 代码加一个装饰器:@pytest.mark.run_bbc_test,命令行添加 -m run_bbc_test,执行带@pytest.mark.run_bbc_test的测试用例; -k 定位 测试用例名称为:test_one,test_two,命令行添加-k “one”,执行test 阅读全文
摘要:
#coding:utf8class Car(object): ''' 模拟汽车的简单尝试 ''' def __init__(self, make, model, year): ''' 初始化汽车的属性 :param make: :param model: :param year: ''' self. 阅读全文
摘要:
class User(object): def __init__(self, first_name, last_name, login_attempts): self.first_name = first_name self.last_name = last_name self.login_atte 阅读全文
摘要:
alien_color = ['green','yellow','red']for color in alien_color: if color == 'green': print 'alien_color_%s: player to obtain five !'%color elif color 阅读全文
摘要:
1XX:接受请求正在处理 2XX:请求正常处理完毕 3XX:重定向 4XX:服务器无法处理次请求(客户端错误) 5XX:服务器处理请求出错(服务器错误) 以下列出几种常见的状态码及解释 200 从客户端发来的请求被正常处理了(有时会返回一个错误的结果,但是会返回结果) 204 从客户端发来的请求处理 阅读全文
摘要:
使用 aapt dump badging + 需要安装的APK 阅读全文