Categories
Excel Python

Working with Excel in Python

While Excel remains a critical tool for many business applications, Python provides the scalability, flexibility and advanced analytics capabilities needed to thrive in the era of big data.

Categories
Automated Testing Python Selenium

Folder Structure Python Selenium Framework with Pytest

Here’s a recommended project structure for end-to-end (E2E) testing with Python, Selenium, and pytest:

project_folder/
├── tests/
│   ├── e2e/
│   │   ├── test_suite_1/
│   │   │   ├── test_case_1.py
│   │   │   └── test_case_2.py
│   │   └── test_suite_2/
│   │       ├── test_case_3.py
│   │       └── test_case_4.py
├── pages/
│   ├── home_page.py
│   ├── login_page.py
│   └── registration_page.py
├── utils/
│   ├── test_data.py
│   ├── configuration.py
│   └── logger.py
├── reports/
│   ├── screenshots/
│   ├── videos/
│   └── test_results.html
├── drivers/
│   ├── chromedriver.exe
│   └── geckodriver.exe
├── conftest.py
├── pytest.ini
├── main.py
└── README.md
Categories
Python Selenium

Selenium & Python

Download and install python

Go to python.org official website and download the latest version.

download python 3.12