SeleniumLab

Course3 · Professional QA engineering → Mobile Testing

3 · Professional QA engineering

Mobile web quality risks

16 min · Module 21

Mobile web risks: small viewports, touch targets, virtual keyboard covering inputs, network variability, responsive CSS bugs.

Lab: resize HelpDesk to a phone width; ensure nav and forms remain usable.

Example / notes

from selenium import webdriver
driver = webdriver.Chrome()
driver.set_window_size(390, 844)  # phone-like
driver.get("http://127.0.0.1:8000/lab/app/")

Practice in Lab: /lab/app/

Log in to track progress / take quizzes
Native apps and device farms (overview) →
Modules in this track