File size: 716 Bytes
a40faa4
 
 
 
2bb0da3
a40faa4
 
 
 
 
2bb0da3
a40faa4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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()