+91 88606 33966            edu_sales@siriam.in                   Job Opening : On-site Functional Trainer/Instructor | Supply Chain Management (SCM)
Blog

Terraform Essentials: When to Use terraform refresh vs terraform plan

When working with Terraform, two commonly used commands are terraform refresh and terraform plan. While both involve examining the state of your infrastructure, they serve distinct purposes. What is terraform refresh? The terraform refresh command updates the Terraform state file with the current state of your real-world infrastructure. Key Points: Example: Suppose you manually change […]

Revolutionizing Data Handling: How AI Transforms Query Optimization Across Industries

The practical impact of AI-driven query optimization can be seen across various industries, revolutionizing how businesses operate and innovate. From streamlining e-commerce searches to accelerating healthcare research and enhancing financial fraud detection, AI is making databases more efficient and intelligent. Below are some specific examples of how AI is being applied to solve real-world data […]

Streamlit-Based Machine Learning Model for Iris Flower Dataset

In this activity, you will build an interactive web application for classifying Iris flower species using Streamlit and a Random Forest Classifier algorithm. This practical is a hands-on demonstration of combining machine learning and web application development to create a user-friendly tool for predictive analysis. Streamlit is an open-source Python framework for data scientists and AI/ML […]

How to Handle Checkboxes in Selenium

This article explains how to handle checkboxes using Selenium in Python. It includes locating checkboxes on a web page using their unique identifiers, verifying their initial selection state, toggling their selection by clicking, and printing the state changes to the console. 1. Import the Necessary Libraries, creating an driver instance and navigating to the specified […]

How to Handle IFrames in Selenium

This article explains how to identify and count the number of iframes (inline frames) present on a webpage using Selenium WebDriver. Two methods are used: An iFrame, or inline frame, is an HTML element that allows you to embed content from another source into a web page. iFrames are used to display content from other websites, […]

How to handles Drop down in selenium

This article demonstrates how to handle dropdown menus using the Select class in Selenium with Python. By interacting with a dropdown on the Selenium web form page, we perform operations such as selecting options by visible text, value, and index, retrieving the currently selected option, and printing all available options. Tasks The Selenium web form […]

How to Handle Alerts and Popups in Selenium

In this article, we will explore how to handle different types of JavaScript popups — alerts, confirm boxes, and prompt boxes — using Selenium. Each popup requires immediate user interaction and can be managed with driver.switch_to.alert. We will use methods like accept(), dismiss(), and send_keys() to interact with these. Follow the below steps to implement […]

Scroll to top