Blog

Get, Put and Delete are idempotent & its significance while testing APIs
GET, PUT, and DELETE methods are considered idempotent in the context of RESTful APIs.
07.06.23 09:37 AM - Comment(s)
Art of Software Testing: Mastering the Craft for Flawless Applications
Art of Software Testing: Mastering the Craft for Flawless Applications
06.06.23 09:25 AM - Comment(s)
Integrating Selenium Grid to Python Framework

Please note the code snippet, for an example of how to integrate Selenium Grid into your Python framework using the selenium package

PS: Refer the article on Python framework to get the codesnippet for the framework

Update WebDriver initialization:

  • Modify your webdriver_factory.py module to include the...
01.06.23 09:23 AM - Comment(s)
Create Python Framework - Code Snippets
  1. Initializing the Selenium WebDriver

from selenium import webdriver
# Initialize the WebDriver for Chrome
driver = webdriver.Chrome(executable_path='path/to/chromedriver.exe')
# Initialize the WebDriver for Firefox
driver = webdriver.Firefox(executable_path='path/to/geckodriver.exe')

  1. Creating a Page Object

...

26.05.23 04:53 AM - Comment(s)
Python Selenium Framework with Pytest - Folder Structure

A well-organized folder structure is essential for code reusability and effective test organization in Python Selenium test automation projects. Here's a recommended folder structure that promotes modularity, maintainability, and ease of navigation.

- project_folder/
  - tests/
  - test_suite...

25.05.23 05:22 AM - Comment(s)