質問

How to get a list of all links on a page using django-webtest?

In my case, i want to test that users have appropriate urls on a page, according to their permissions.

役に立ちましたか?

解決

Ok, I think i found out how to get a list of all the urls on a page:

assert False, response.click(verbose=True)

This will print all the url elements that webtest found on a page with a feedback if it was accepted or skipped.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top