File srcFile = PhoneBaseClass.getDriver().getScreenshotAs(OutputType.FILE);是不是改为 File srcFile = driver.getScreenshotAs(OutputType.FILE);?
你好!请问一下 import osvc.mobile.tests.PhoneBaseClass;这个类怎么导入?还有如果没有这个类的话,File srcFile = PhoneBaseClass.getDriver().getScreenshotAs(OutputType.FILE);这里的 PhoneBaseClass 会报错
博主,请问一下,有没有保存返回一些参数功能,作为后续参数?如何利用保存数据作为指定字段(如:login.companyInfo.companyId)?
if os.path.exists(tdresult):
filename = tdresult + "/" + "result.html"
fp = file(filename, 'wb')
# 定义测试报告
runner = HTMLTestRunner.HTMLTestRunner(stream=fp, title=u'接口测试报告', description=u'用例详情:')
# 运行测试用例
runner.run(test_case)
fp.close() # 关闭报告文件
url = 'http://127.0.0.1:5000/updateTaskStatus'
values = {"taskId":15,"state": "3",}
(responsedata,code) = HttpUntil.post(url, values, '')
if responsedata['code'] == 0:
common.logInfo('-------------run case over--------------')
是 run_case 下面的 URL 和 values 么? 如果是的话好像访问不了?
你好!请问一下运行结果显示错误:
No JSON object could be decoded
Traceback (most recent call last):
File "C:\Users\admin\PycharmProjects\untitled14\app\static\interface_auto\test_src\45\src\Test_csc.py", line 22, in test_go
(responsedata,code) = HttpUntil.post(url,values,'')
File "C:\Users\admin\PycharmProjects\untitled14\common\HttpUntil.py", line 37, in post
return None,e.code
AttributeError: 'exceptions.ValueError' object has no attribute 'code'
这个问题如何解决?是 json 的问题?