문제

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