Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个使用 selenium 从 firefox(firebug) 读取 json 响应的场景。谁能帮我自动化这个。有没有办法从硒读取萤火虫日志。先感谢您。
我不确定这是否是您要寻找的,但这是我为我们的情况找到的解决方案。
json.loads(res.find_element_by_tag_name("body").text)
res 是 Firefox 网络驱动程序。