Arguments
- Name: attr, Type: str
- attribute
- Name: value, Type: str
- value
Source
def attr_contains_word(self, attr, value):
a = self.attr(attr)
if a is not None:
val = re.compile('\\b' + value + '\\b')
if val.search(a) is not None:
return True
return False