Skip to main content

Automatic JS error detection with STF and WebDriver

If you followed my post on Catching java script errors with WebDriver then you already know how browser console logs can be used to catch javascript errors. But a problem which surfaces is that javascript error check has to be added on each test step where java script error check is to be done. This would result in lots of boilerplate code. A better approach would be to automate this check.


This is what STF 4.0.14 does. It introduces CustomEventListener class which catches SEVERE errors on browser console. But before delving into CustomEventListener, let’s understand two classes available from webdriver API -


EventFiringWebDriver implements WebDriver interface besides other interfaces. It supports registering WebDriverEventListener which can be used for logging purpose. For example get() method to open application URL looks as following in EventFiringWebDriver -


public void get(String url) {
dispatcher.beforeNavigateTo(url, driver);
driver.get(url);
dispatcher.afterNavigateTo(url, driver);
}


Hence it is a call to get method from WebDriver interface along with dispatcher statement before and after it. Herein beforeNavigateTo and afterNavigateTo are the methods in WebDriverEventListener interface. Other methods in EventFiringWebDriver follow the same structure, for ex click method looks as -


public void click() {
dispatcher.beforeClickOn(element, driver);
element.click();
dispatcher.afterClickOn(element, driver);
}


Herein WebDriverEventListener is the interface (described later) which does the job of logging or carrying out an operation you want before get(), click() or any other WebDriver operation.
There are two more important methods in EventFiringWebDriver which are used to register or unregister a WebDriverEventListener  -


public EventFiringWebDriver register(WebDriverEventListener eventListener) {
eventListeners.add(eventListener);
return this;
}


public EventFiringWebDriver unregister(WebDriverEventListener eventListener) {
eventListeners.remove(eventListener);
return this;
}


This is a listener interface which should be implemented to catch WebDriver events. If you don’t want to implements all of the methods in this interface than you can extend AbstractWebDriverEventListener class and override those methods (or events) for which you want to collect logs


And this is what STF does. CustomEventListener extends AbstractWebDriverEventListener class and overrides navigation and click methods -


@Override
public void beforeNavigateTo(String url, WebDriver webDriver) {
  logErrors(url, getBrowserLogs(webDriver));
}


@Override
public void afterNavigateTo(String url, WebDriver webDriver) {
  logErrors(url, getBrowserLogs(webDriver));
}


@Override
public void beforeClickOn(WebElement element, WebDriver driver) {
  logErrors("before", element, getBrowserLogs(driver));
}


@Override
public void afterClickOn(WebElement element, WebDriver driver) {
  logErrors("after", element, getBrowserLogs(driver));
}
getBrowserLogs gets the log entries for browser -


private LogEntries getBrowserLogs(WebDriver webDriver) {
  return webDriver.manage().logs().get(LogType.BROWSER);
}


and logErrors() logs the Severe browser console errors -


private void logErrors(String url, LogEntries logEntries) {
  if (logEntries.getAll().size() == 0) {
      TestLogging.log("********* No Severe Error on Browser Console *********", true);
  } else {
      for (LogEntry logEntry : logEntries) {
          if (logEntry.getLevel().equals(Level.SEVERE)) {
              TestLogging.log("URL: "+url);
              TestLogging.logWebStep("Time stamp: " + logEntry.getTimestamp() + ", " +
                      "Log level: " + logEntry
                      .getLevel() + ", Log message: " + logEntry.getMessage(), true);
              isJSErrorFound = true;
          }
      }
      assert !isJSErrorFound;
  }
}


And STF takes care of instantiating EventFiringWebDriver. But if you are not using STF then you can instantiate EventFiringWebDriver as following and use it in rest of your tests -


WebDriver driver =
CustomEventListener eventListener = new CustomEventListener();
EventFiringWebDriver eventFiringWebDriver = new EventFiringWebDriver(driver);
eventFiringWebDriver.register(eventListener);
eventFiringWebDriver.get(“www.google.com”)


How do I use STF java script error check?


You should be using STF 4.0.14. Add property eventFiringWebDriver to your testng.xml file and set it to true -
<parameter name="eventFiringWebDriver" value="true"/>


That’s all and you are ready to catch all javascript errors from your tests. Simple is not it? :-)
I added a test in testng.xml file which demonstrate catching javascript errors with WebDriver. When you run test and open test report then you would find javascript error reported as following -


Screenshot from 2016-07-13 16:50:13.png


The test above uses the page with javascript error created by Alister Scott


Caveats:


  • Browser Logging mechanism is beta hence you may encounter unexpected behaviour.


  • I did not have great success in catching JS error on firefox browser. If you run the test from testng.xml file on firefox browser then no error is reported.

So what are you waiting for? Don’t let the JS error slip into production any more. Try it out and share your experience :)

Popular posts from this blog

Distributed Load Testing with JMeter

Distributed Testing with JMeter When one JMeter client is not able to offer amount of threads required for load testing then distributed testing is used. In distributed testing - One instance of JMeter client can control number of JMeter instances and collect data from them Test plan does not need to be copied to each server, the client sends it to all servers note - JMeter will run all the threads on all the servers, hence 100 threads on 5 JMeter server would pump 500 threads in total. If many server instances are used, the client JMeter can become overloaded and so the client network connection. This has been improved in latest versions of JMeter by switching to Stripped modes, but you should always check that your client is not overloaded When Client (master) and Server (slave) nodes are on same network (no SSH required) Configure Client Node Herein client is referred as the machine controlling test execution on other JMeter nodes. This is also referred

Appium and android mobile app automation

Next appium and Android mobile app automation video tutoria l is live. If you are new to appium then please check - appium-tutorial This video tutorial covers - Start vysor (Just for this session and not mobile automation :)) Start appium and start appium inspector Desired Capabilities platformName - Android deviceName - L2N0219828001013 (as seen on "adb devices") Saved Capability Sets Start Session Scan app elements using appium inspector Get appPackage and appActivity using "APK info" app Install "APK info" app and open app whose appPackage and appActivity are required i.e. calculator Check top section of app icon com.android.calculator2 is app package com.android.calculator2.Calculator is app activity testng.xml file settings for running Android app tests Test details com.seleniumtests.tests.mobile.AndroidAppTest and CalculatorScreen class View beautiful STF test report  

Verify email confirmation using Selenium

Note: If you are new to java and selenium then start with selenium java training videos .     Email confirmation seems to be integral part of any registration process. I came across an application which lets you provide your email address. You can follow the sign up link in you mail and then complete the registration process. Lets consider we provide GMail address for it. Now if were to use only Selenium then we would have to follow following steps - Launch GMail using Selenium; Some how search for new mail in the list of available mails; Some how click on it; Parse the mail message; Get the registration link; Follow up with registration process What do you think of an approach in which you can