Fiddler在我的笔记本电脑上运行良好,但突然间它无法从我的浏览器中捕获任何内容。我对我所做的事情没有任何想法可能会导致这个问题。
我的fiddler版本是v4.6.0.5,它无法捕获来自我所有浏览器,Chrome,IE和Edge的http请求。我的系统是Windows 10。
我仔细阅读了网页Fiddler not capturing traffic from browsers 但是,解决方案适用于其他人在我的情况下不起作用。
有谁知道我该如何解决这个问题?谢谢!
我发现某些软件的http请求已被捕获。似乎只捕获了浏览器的请求。 我暂时使用chrome中的开发人员工具进行替换(Ctrl + Shift + I,选择“NetWork”)。它可以捕获Fiddler中遗漏的请求。
答案 0 :(得分:0)
您的输出表明:
在Fiddler的x = [1, 2, 3, 4, 5]
y = [6, 7, 2, 4, 5]
# output to static HTML file
#output_file("lines.html", title="line plot example")
# create a new plot with a title and axis labels
p = figure(title="simple line example", x_axis_label='x', y_axis_label='y')
# add a line renderer with legend and line thickness
p.line(x, y, legend="Temp.", line_width=2)
p1 = figure(title="simple line example", x_axis_label='x', y_axis_label='y')
# add a line renderer with legend and line thickness
p1.line(x, y, legend="Temp.", line_width=2)
return components((p, p1))
菜单中,return components((p, p1))
File "C:\Working\anaconda_python_27\lib\site-packages\bokeh\embed.py" in components
ref = plot_object.ref
Exception Type: AttributeError at /backtest/mavg/
Exception Value: 'tuple' object has no attribute 'ref'
项旁边是否有复选标记?当Fiddler正在运行时,如果您点击return components({"p":p, "p1": p1})
> File
> Capture traffic
,你看到了什么?
您是否安装了第三方防病毒软件?该机器是否受组策略控制(例如在公司网络上)?
如果您像这样启动Chrome:Tools
,会发生什么?