identify angular
Skip to content As per Protractor Official Document:- Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against your application…
And Keep It That Way
Skip to content As per Protractor Official Document:- Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against your application…
Skip to content Let’s start with some questions :- I have installed TestNG but I am not getting TestNG annotation. Why? I have… When you create some TestNG tests and you want to run that test as a TestNG test in Eclipse, by…
Generics were introduced in Java 1.5 with the purpose of identifying probable run time errors related to type at compile time itself. It provides stronger type checks at compile-time and makes a class, interface and methods type-safe. It also eliminates explicit type casting. You will be aware of the below concepts at end of this…
Skip to content As per Protractor Official Document:- Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against your application… As per Protractor Official Document:- Protractor is an end-to-end test framework for Angular and AngularJS applications. Protractor runs tests against…
Skip to content XPath 1 provides a powerful function named “position()” . Before we move further, let’s get in to a scenario where… This question was recently asked in a Selenium group on Facebook. Generally these types of question are asked frequently in…
This post is updated with Selenium 4 changes in WebDriver hierarchy. There are many important classes and interfaces in Selenium WebDriver. In this post we will see hierarchy of classes and interface related to WebDriver interface. Understanding “Why” of a line of code is very much important and if you copy code from others without…
Read More “Hierarchy of Classes & Interfaces of WebDriver Interface in Selenium WebDriver” »
Skip to content We have seen about Collection Runner in last post. In this post we will see how can we select environment… Hello Folks, We have already seen Creating a collection and storing requests in it. Let’s perform below steps:- Create a… This post will cover below topics:- How to create a collection in…
Recently, a guy asked me below question: I need to verify title of an article is in bold. Article title has no or tag. How to verify it now? It was also new to me and learnt new thing that day. So I am sharing my knowledge here. HTML provides two tags to make text…
Read More “How To Verify Text In Bold Using Selenium WebDriver” »
Hello Folks, We already know that “A Postman collection allows you to group individual pre-built requests together. You can even group by creating folders in a Collection“. Read more about collection here. Suppose you have 10 requests in a Collection. When you run this collection using Collection Runner, you will see execution of requests happens…
Hello Folks, We have seen how a TestNG class executes methods when we do not provide any order to methods. You can refer those posts here: Default Priority in a TestNG Class Default Priority in an Inherited Class But, you may require to execute methods in a certain order. Consider a scenario where you need…
Read More “TestNG Tutorials 22: @Test Annotation – Games Of Priority Of Methods In TestNG” »