As your test automation skills grow, it’s crucial to implement advanced strategies that enhance the efficiency, reliability, and maintainability of your tests. In this post, we’ll explore several techniques that can help you optimize your test automation framework using PyTest and Selenium. Custom Test Suites and Tags: Organizing tests into custom suites and using tags […]
Ashika Meshram
Ashika Meshram is a Technical Consultant currently working on EHI. She is a coder girl fond of traveling and blogging.
Blogs from this Author
Improving Selenium Test Stability with Pytest Retries and Waits
Introduction Flaky tests—those that fail intermittently—are a common headache for test automation teams. They can be especially frustrating in Selenium tests because of the dynamic nature of web applications. Elements might take time to load, page navigation could be slow, or JavaScript-heavy applications might delay interactions. These issues lead to false negatives in tests, where […]
Elevating Selenium Testing: Comprehensive Reporting with Pytest
When you’re running Selenium tests in Python, particularly in large projects, the ability to generate detailed and readable reports is essential for understanding test results, tracking failures, and improving overall test management. In this blog post, we’ll explore how to integrate reporting into your Selenium tests using Pytest, one of the most popular testing frameworks […]
Managing Dependencies for Test Automation with requirements.txt
When it comes to test automation in Python, managing your dependencies is essential for ensuring consistent and reliable test execution. One of the most effective ways to handle these dependencies is through the requirements.txt file. In this blog post, we’ll discuss what requirements.txt is, its importance in the context of testing, and how to effectively […]
Handling Complex Test Scenarios with Selenium and Pytest: Advanced Techniques
In the world of test automation, Selenium paired with Pytest is a powerful combination. While basic web interactions can be automated easily, complex test scenarios often require advanced techniques. These scenarios may involve dealing with dynamic elements, multiple browser windows, interacting with iFrames, handling AJAX calls, or managing file uploads. In this blog, we will […]
Streamlining Test Automation with Page Object Model (POM) in PyTest and Selenium
In our previous discussion about utilizing PyTest with Selenium, we laid the groundwork for automated testing in web applications. Now, let’s enhance that foundation by exploring the Page Object Model (POM), a design pattern that improves the organization of your code and boosts your tests’ maintainability. What is the Page Object Model (POM)? The Page […]
Using PyTest with Selenium for Efficient Test Automation
In our previous post, we explored the basics of Selenium with Python, covering the introduction, some pros and cons, and a basic program to get you started. In this post, we’ll delve deeper into the world of test automation by integrating Selenium with PyTest, a popular testing framework in Python. PyTest makes it easier to […]
Boosting Your Testing Workflow with GitHub Copilot: A Step-by-Step Guide
Software development requires testing as an essential component. It ensures that your code operates as intended and finds errors before being used in production. Test writing, meanwhile, can occasionally seem like a tedious task. Fortunately, this procedure may be accelerated and improved upon by using GitHub Copilot, an AI-powered coding assistant. In this blog post, we’ll […]
WiT – Foster Your Professional Presence
Unusual riders and addendums aren’t unusual, and my workplace never disappoints me when adding another set of sparks that will forever lead to a bright vibe, even if there’s an otherwise gloomy surface beneath. No matter what it is, whether it be technology, health, or managing personal and professional lives, WiT has always convinced me […]
Let’s Get Started: Selenium with Python #1
Did you know Python can prove to be a best friend of Selenium when it comes to automation testing? This blog will not only give a brief description of how it works and why it is required to know Selenium with python these days but will also help in learning automation testing using the same. […]