TestNG is a testing framework mainly used for unit testing of the Java projects. The Testng has pre-defined annotations and attributes associated with the annotations would help to verify the… Read more »
TestNG is mainly used by the JAVA Developers to perform Unit Testing of the Code. This Framework is used mainly in Selenium as well to verify the outcome of the… Read more »
TestNG is a java framework useful to execute the Unit Tests in a java project. We can even TestNG to automate the Selenium Tests in the Project.In TestNG xml file,… Read more »
TestNG allows you to group your tests and also allows to pass Test Parameters using parameter tag in the TestNG xml file. You can then execute one or more specific… Read more »
PhantomJS is a headless web browser scriptable with JavaScript which is similar to HTMLUnitDriver. Click on this link to view the examples of the HTMLUnitDriver. PhantomJS runs on Windows, macOS,… Read more »
In this tutorial we will discuss about Fixing the issues that arises during execution of Selenium WebDriver tests against the browser Type Internet Explorer. Before Running Tests, make sure the… Read more »
In this tutorial we will discuss about the problem by adding the semicolon after for-loop,while-loop and if-statement. This concept is very important to know from Selenium WebDriver perspective as well…. Read more »
In this tutorial we will discuss about automating the Interactive Charts and SVG [Scalable Vector Graphics] in Selenium. To automate these Interactive Charts, Selenium Locators such as Xpath and Css-Selector… Read more »
In this tutorial we will learn about resolving the merge conflicts in Git and Github. Git can often resolve differences between merged branches. Usually, the changes are on different lines,… Read more »
In this example we will discuss about the WebElement Methods available in Selenium WebDriver. Refer to the Link for WebElement API Methods. Generally we mainly use methods like sendKeys(),click(),getText(). But… Read more »