Framework Mode - Custom wait conditions
Folder Structure
my_selenium_project/ ├── tests/ │ ├── test_login.py │ └── test_checkout.py ├── pages/ │ ├── base_page.py │ ├── login_page.py │ └── checkout_page.py ├── waits/ │ └── custom_waits.py ├── utils/ │ ├── logger.py │ └── config_reader.py ├── config/ │ ├── dev_config.yaml │ ├── prod_config.yaml │ └── test_config.yaml ├── conftest.py └── requirements.txt