To make your website easy to navigate, menus arblogucial. Links are provided on menus to aid with navigation. Using the Drupal menu, you can add, remove, and rename menus and items. We’ll look at creating menus in Drupal in this blog. Easy Procedures to Construct Menus in Drupal Step 1: Click Structure, as displayed on the […]
Mangesh Sonwane
Mangesh Sonwane is an Associate Technical Consultant at Perficient in Nagpur GDC. He has an experience of 1+ years in Drupal and AEM. Apart from this passionate about learning new changes and expanding his knowledge in Automation. He is very committed to his work and is always ready to face any challenging projects.
Blogs from this Author
Drupal – Taxonomies Overview on Vocabulary Terms (Part 2)
Taxonomy Vocabulary Terms You can link, relate, and categorize the content on your website using the robust core module known as taxonomy. “Vocabularies” are collections of these terms in Drupal. You may build, manage, and use these vocabularies with the help of the taxonomy module. How Can I add Terms to Created Vocabularies? Following are […]
Tools for JSON Development
JSON stands for JavaScript Object Notation. It is a Data Format that supports a variety of data kinds, including Strings, Booleans, Lists, Numbers, and Objects. It is one of the most common, simple, and lightweight formats for service interaction. In this blog post, I’ll go through 4 JSON Tools that will help you parse, prepare, […]
Running Automated Tests in Parallel with TestNG
Running automated tests in parallel can be a time saver. There are 2 aspects I will be discussing: the first one refers to using data providers, while the second one implies that you are grouping and running tests using XML suite files. Using data providers Whenever a test method receives parameter values through a data provider […]
Selenium Pros and Cons for Automation Testing
In this blog, we’ll go over what Selenium is, why you should use it, and its benefits and drawbacks. What Is Selenium? Selenium is a free (open-source) framework for automating test execution that is used to assess online applications. Selenium implements itself through a unique driver to each browser, accepting commands and sending them to […]
Comparison between Selenium 3 and Selenium 4
In this blog, I will evaluate the Selenium 3 and Selenium 4 architectures before highlighting a few Selenium 4 benefits. I will also go over the new features added to Selenium IDE, Selenium WebDriver, and Selenium Grid in Selenium 4. The fundamental cause for Selenium’s upgrading is the W3C WebDriver Protocol, which is the most […]
How to Handle iFrames using Selenium
According to our State of Open-Source Testing 2020 Report, Selenium is by far the most widely used open-source automation framework for functional testing of web applications, with over 81% of respondents utilizing it. We’ll talk about iFrames in this blog, including what they are, how they differ from frames, and how to manage them using […]
Working with Cookies in Selenium Automated Tests
We’ll look at the Selenium commands in this blog that are used to work with cookies. Cookies, or HTTP cookies, are small data files that are saved on a user’s computer that include details about the user and their preferences on a particular website. Let’s get started and go over using cookies in Selenium. First […]
Selenium Navigation Methods
Navigation Methods Let’s explore the category of Navigation Methods. It is a group of techniques for loading, refreshing, going backward, and moving forward in our browser’s history. After writing navigate() followed by the dot operator, each Navigation method is made available. The driver can access our browser’s history by writing navigate(). By the article’s conclusion, […]
Selenium Automation Best Practices & Tips You Must Know
In this blog, we’ll examine the top Selenium automation techniques from beginning to end. One of the most successful projects for testing a web application is, by far, Selenium. Ideal Techniques We must choose which test to automate before automating a test script. Virtually all test cases cannot be automated. Due to the abundance of […]
Comparing the Different Selenium Switching Techniques
Before we go any further, let’s understand why and when the switch method is used for. Frames, notifications, and windows can be switched using Selenium Switch Methods. Before performing an action inside the frame, alert, or window, our Test Script needs to switch. If we don’t switch, an exception is raised by the application. switchTo() […]
Guide to Implicit, Explicit, and Fluent Waits in Selenium
One of the most Crucial Abilities to understand if you want to become an expert Selenium WebDriver user is the use of the Wait Commands. They are necessary for running test scripts and for locating and fixing problems with Time Latency in web elements. What do we need Wait? By synchronizing our test to […]