Use the following xpath
which will identify the row based on string.
//tr[contains(.,'1/6/2021 3:00PM') and contains(.,'5551110050') and contains(.,'933')]
Check the length count if it more than 0 then Item Found else not
if len(driver.find_elements_by_xpath("//tr[contains(.,'1/6/2021 3:00PM') and contains(.,'5551110050') and contains(.,'933')]"))>0:
print("Item Found")
else:
print("There is no such item")
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…