Framework Mode - Find element by partial link text
Folder Structure
selenium_project/
├── tests/
│ ├── test_login.py
│ ├── test_navigation.py
│ └── test_partial_link_text.py <-- tests using partial link text locator
├── pages/
│ ├── base_page.py
│ ├── login_page.py
│ └── home_page.py <-- page objects with methods using partial link text
├── utils/
│ ├── driver_factory.py
│ └── wait_utils.py
├── config/
│ ├── config.yaml
│ └── credentials.yaml
├── conftest.py <-- pytest fixtures for setup/teardown
└── requirements.txt