Project / testcases /test_recognize_face.py
RajaThor's picture
Rename test_recognize_face.py to testcases/test_recognize_face.py
9543186 verified
raw
history blame contribute delete
716 Bytes
import streamlit.testing as stt
def test_recognize_face():
with stt.install_test_input():
stt.test_runner.start("app.py")
# Select the "Recognize Face" option
stt.test_input("Select Option", "Recognize Face")
# Upload an image for face recognition
stt.test_input("Upload Image", "random.jpg")
# Click the "Recognize Face" button
stt.test_input("Recognize Face")
# Verify the recognition result
stt.test_output("It's a picture of John Doe! Insta handle: <a href='https://www.instagram.com/johndoe123/' target='_blank'><font color='red'>johndoe123</font></a>")
# Clean up
stt.test_runner.cleanup()
test_recognize_face()