├── README.md ├── conftest.py ├── pages ├── base_page.py ├── images_page.py ├── results_page.py └── search_page.py ├── requirements.txt └── ui_tests └── test_duck_go.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/README.md -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/conftest.py -------------------------------------------------------------------------------- /pages/base_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/pages/base_page.py -------------------------------------------------------------------------------- /pages/images_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/pages/images_page.py -------------------------------------------------------------------------------- /pages/results_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/pages/results_page.py -------------------------------------------------------------------------------- /pages/search_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/pages/search_page.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/requirements.txt -------------------------------------------------------------------------------- /ui_tests/test_duck_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NazarYermolenko/ui-python-automation/HEAD/ui_tests/test_duck_go.py --------------------------------------------------------------------------------