Collections framework in Java
Collection: Group of individual objects in one unit. It’s a root interface of collections framework, which defines most common methods…
Collection: Group of individual objects in one unit. It’s a root interface of collections framework, which defines most common methods…
Assert is to compare the expected with actual. Assert is class exposed from org.testng.Assert; 2 types of Asserts – Soft…
Arrays Collections Can hold only homogeneous elements. All elements should of same data type, either all are int or String…
DesiredCapabilities describe a series of key/value pairs that encapsulate aspects of a browser, Basically this is used to set certain…
Exceptions are basically abnormal/unexpected conditions that may occur while running code/test.These exceptions may disrupt the execution, but we can handle…
What is Array Arrays are used to store homogenous elements/values (of same data type) Can access the elements by the…