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.
如何使用 django-webtest 获取页面上所有链接的列表?
就我而言,我想根据用户的权限测试用户在页面上是否具有适当的 url。
好的,我想我发现了如何获取页面上所有 url 的列表:
assert False, response.click(verbose=True)
这将打印 webtest 在页面上找到的所有 url 元素,如果它被接受或跳过,则带有反馈。