pybraincompare
pybraincompare copied to clipboard
ValueError: unsupported format character '<' (0x3c) at index 3
Hi i am getting error on running code . can you please help
HTML_BODY= """
| S.No. | Scenario Name | Total Test Cases | Passed Test Cases | Failed Test Cases |
|---|---|---|---|---|
| 1 | %s% | %s% | %s% | %s% |
| Total Scenario | Total Test Cases | Passed Test Cases | Failed Test Cases |
|---|---|---|---|
| %s% | %s% | %s% | %s% |
""" %(self.__flow,self.__totalflowtestcases,self.__flowtestpass,self.__flowtestfail,self.__alltestcases,self.__alltestcases,self.__testpass,self.__testfail)
Could you please give more detail about the command you are running? I can't make sense of what you'e pasted into the window.
Generally an unsupported format character means that the input that you are putting into (some function) needs to be read as a different encoding, typically the default is ascii and you might try utf-8.