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