我想使用 python-owasp-zap api。我下载并安装了 python-owasp-zap 所需的所有存储库。当我运行网站https://github.com/zaproxy/zaproxy/wiki/ApiPython中给出的示例代码时,我收到以下错误,请帮助我。
Traceback (most recent call last):
File "zap2.py", line 34, in <module>
while (int(zap.spider.status()) < 100):
ValueError: invalid literal for int() with base 10: 'Does Not Exist'
然后,我尝试从 status 方法中删除括号:
while (int(zap.spider.status) < 100):
print 'Spider progress %: ' + zap.spider.status
time.sleep(2)
我收到以下错误:
TypeError: Int argument must be an Int or string not an InstanceMethod
非常感谢您帮助纠正错误。