Last active 1743630318

dockerfile Raw
1FROM python:3.10-slim
2
3# Install dependencies
4RUN apt-get update && apt-get install -y \
5 curl unzip default-jdk \
6 && pip install --no-cache-dir selenium appium-python-client
7
8# Set working directory
9WORKDIR /tests
10
11# Copy test scripts (bind-mounted or pulled from repo)
12COPY ./test_script.py /tests/test_script.py
13
14# Run the test script
15CMD ["python", "test_script.py"]
16
test_script.py Raw
1from selenium import webdriver
2
3# Connect to Appium (assumes local Android device connected)
4caps = {
5 "platformName": "Android",
6 "deviceName": "RaspberryPi_Device",
7 "app": "/path/to/app.apk",
8}
9
10driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
11
12# Run a simple test
13driver.find_element_by_accessibility_id("LoginButton").click()
14print("Test completed successfully!")
15
16driver.quit()