make sure text is on page selenium python code example
Example: make sure text is on page selenium python
body_text = driver.find_element_by_tag_name('body').text
assert 'my text' in body_text
body_text = driver.find_element_by_tag_name('body').text
assert 'my text' in body_text