Tip : None of the features at [classpath:features] matched the filters:...
Hi,If we try to provide tags individually as below in main method for command line usage, we may end-up getting the error message saying .. None of the features at classpath matched the...
View ArticleCore Java : Cannot make a static reference to the non-static field
If you try to access an instance variable or say non-static variable in a static method, you would end up with static reference error message.For instance, in the following example, variable "a" is...
View ArticleC# : Error CS0120 An object reference is required for the non-static field,...
In C#, if you try to print a non-static variable from static method, you will see the reference error message.Severity Code Description Project File Line Suppression StateError CS0120 An object...
View ArticleSelenium installation in Eclipse and launch a website using navigate().to()...
Hi ,This tutorial is intended to written for beginners and in this example, we would see how to set-up and launch a website in chrome browser (for example: https://jasper-bi-suite.blogspot.com/) using...
View ArticleLocators for selenium | linkText Example
Hi,In this post, you will see the demonstration of "linkText" locator usage. For the purposes, I took my blog-site https://jasper-bi-suite.blogspot.com/.linkText is one of the 8 locators supported by...
View ArticleLocators for selenium | id locator example | facebook login automation...
Hi,In this post, you will see the demonstration of "id" locator usage. "id" is one of the 8 locators supported by selenium, using it one can navigate to target page by performing click action.For...
View ArticleLocators for selenium | name locator example | gmail login automation example...
Hi,In this post, you will see the demonstration of "name" locator usage. "name" is one of the 8 locators supported by selenium, using it one can navigate to target page by performing click...
View ArticleLocators for selenium | className locator example | gmail login automation...
Hi,In this post, you will see demonstration of "className" locator usage. "classname" is one of the 8 locators supported by selenium, using it one can navigate to target page by performing click...
View ArticleLocators for selenium | tagName locator example | display anchor tag "a"...
Hi,In this post, you will see demonstration of "tagName" locator usage. "tagName" is one of the 8 locators supported by selenium.For instance, display all the anchors "a" or "images" alternative texts...
View ArticleWebElement interface methods examples in selenium | Understanding of methods...
Hi , In this post - I'm writing my learning experiences on various methods of "WebElement" interface.Test site courtesy : https://www.testandquiz.com/selenium/testing.htmlWatch the below ~1 min video...
View ArticleLocators for selenium | xpath locator example | gmail login automation...
XPathXPath = XML PathIt is a type of query language to identify any element on the web page. Syntax//tagname[@attribute='value']Writing XPath for complex applications sometimes cumbersome task.There...
View ArticleWebElement interface methods examples in selenium - part 2 | Understanding of...
Hi, In this post, we will see the differences between WebElement interface most commonly used methods - isDisplayed(), isEnabled() and isSelected() with real time example scenarios.IsEnabled() has some...
View ArticleJaspersoft reports server valid login and invalid login automation tutorial...
Hi ,This is an introductory article on automating the Jaspersoft reports server user activities. In this tutorial, you would learn how to effectively implement cucumber framework with java selenium for...
View ArticleHandling internet explorer windows based authentication to a website using...
Hi,In this post, you will see tips on how to authenticate a website that is based on windows authentication. Reader is assumed to have some prior fundamental knowledge on the java-selenium-cucumber...
View ArticleWebElement interface methods examples in selenium - part 3 | Understanding of...
Hi, in this post, we will walk through the usage and live example of isEnabled() method. isEnabled() method, we apply in special scenarios where in we select a check box and get the status of a button...
View ArticleHow to compare displayed row count on page is equals to data table row count...
Hi , In this tutorial, we'll learn about how to compare displayed row count on page is equals to data table row count in java selenium.There are several ways to accomplish this, by the time I write...
View ArticleHow to compare displayed drop down select values(actual values displayed) are...
Hi, in this post, we will learn about how to auto compare the displayed drop down select values to the user expected drop down values.i.e , compare "actual values displayed" to the "user expected...
View ArticleTip : How to fix --> DEBUG cache:45 - Couldn't find template in cache for...
Hi,When you receive the following DEBUG for Maven based cucumber java selenium project that is configured with extent reports, it can be fixed in log4j.properties by adding the following property.Fix :...
View Article