I want to do a unit test on a html page which is returned as a byte string in an HttpResponse object... e.g. "find_elements_by_tag_name". Is the solution simply to xml.dom.minidom.parseString the bytes of response.content?
I couldn't find any examples of people doing this online or in Django manuals or tutorials, which makes me wonder if there's a reason for not doing it this way? If it's bad practice and there's a better way to do this please can you say why and what?
for interest, this is what I came up with in the end:
... although my very newbie-ish understanding that this is not a brilliant test in that assertTrue, if ever it failed on one INPUT tag, would then cause the method to end... whereas you'd want info about all INPUTs which failed.