Accessibility Testing in Slides
June 28, 2019 Amod Mahajan Leave a comment Posted in: Selenium Topics Filed under: Accessibility, Accessibility testing, dequq axe
And Keep It That Way
June 28, 2019 Amod Mahajan Leave a comment Posted in: Selenium Topics Filed under: Accessibility, Accessibility testing, dequq axe
Hello Folks, DataProvider is an awesome functionality provided by TestNG to achieve Data Driven Testing. You must have already seen many posts on DataProvider on my blog. If not, I will advise you to go through them. If you have used DataProvider in your tests, you must have encounter “Data provider mismatch” exception. I see…
As a part of End to End REST Assured Tutorial, in this post, we will parse a JSON as JsonNode to fetch values of different types. Creating POJO classes for parsing a JSON to fetch values may not be easy all the time especially when you have lengthy nested JSON. Instead, we can use the tree…
Hello Guys, Whether you are an API developer or tester, you must understand the difference between PUT and PATCH http methods. It is also a frequently asked interview question. Let’s understand PUT and PATCH in details. PUT:- An HTTP PUT method is used to primarily update the resource information but it also can be used…
Read More “Postman Tutorial Part 9 – DIfference Between Put and Patch HTTP Methods” »
Hello Folks, We have already seen How to read data from a json file in Postman. In previous post, we have learnt Achieving Data driven testing using CSV in Postman. I will strongly recommended to go through above two links to understand about Data driven testing of API. Instead of CSV , we will use JSON…
Read More “Postman Tutorial Part 45 – Data Driven Testing in Postman Using JSON File” »
Skip to content Problem Statement https://leetcode.com/problems/ransom-note/ Given an arbitrary ransom note string and another string containing letters from all the magazines, write a…
Hello Programmers, An interview candidate was asked to write java code to find the length of given string WITHOUT USING LENGTH METHOD in Capgemini. In this post, I will find length of string without using Length method but using some other method. :-p There is another method in String class called lastIndexOf(). LastIndexOf() method: As…
Read More “Java Programs 16: Java Program to Find Length of String Without Using Length Method” »
I remember when I used to generate some random data with alphabets and numbers which were meaningless words like “Bjhet”, “Hyiue” etc. Generating some random data helps you to eliminate boilerplate codes or unnecessary headaches of maintaining data. For example:- If you need to register a user which requires first name, last name, age, address,…
Read More “Javafaker API – Generate Real-Time Fake Data – Faker Class” »
Hello Guys, I am going to explain the usage of a method named string-length() from XPath 1.0. This method is very useful to write advanced and dynamic locators. XPath 1.0 provides an overloaded method named string-length():- string-length(string) – returns length of given string string-length() – returns the length of the string specified by the context…
Read More “XPath Method- string-length() – Usage in Locating Element” »
An Introduction to Selenium – A set of Tools Architecture of Selenium Webdriver http://makeseleniumeasy.com/2017/03/21/installation-of-java-eclipse-and-selenium/ http://makeseleniumeasy.com/2017/03/24/setup-of-selenium-project-and-how-to-open-a-chrome-browser/ How To Launch Firefox Browser in Selenium WebDriver – Java Launch of Edge and Internet Explorer browser in Selenium 3 Hierarchy of Classes & Interfaces of WebDriver Interface in Selenium WebDriver All about WebDriver: Methods And Its Usages Why syntax…