contains text python case insensitive code example
Example 1: how to make a string case insensitive in python
if thing.lower() == "text":
Example 2: How to make String.Contains case insensitive?
Assert.IsTrue(text.ToUpper().Contains("Sample".ToUpper()));