机器人框架中的tcpdump流量验证

时间:2017-10-24 11:16:05

标签: command-line-interface robotframework tcpdump

使用以下命令验证接口上的流量。

<select name="" id="drop_down" onchange="check2();" data-stop-propagation="1">

但是如何验证.pcap文件中没有数据包?此外,我如何验证所有流量通过?

1 个答案:

答案 0 :(得分:0)

我会编写一个python模块tcpdump_util并使用python pyshark包。

def collect_capture(file='tr.pcap'):
    return pyshark.FileCapture(file)

def get_capture_length(capture):
    return len([packet for packet in capture])

这可以为您提供捕获的数据包数量。至于验证......我不确定。您可能需要双方捕获?