How To Collect Network Traffic Automatically With Selenium WebDriver

If you need to collect performance data and HTTP web traffic between your browser and a web server. You can use the following method to make the process automatically use selenium webdriver. This article will tell you how to capture network data to a har file in selenium webdriver. Use BrowserMob Proxy as a proxy …

How To Collect Network Traffic Automatically With Selenium WebDriver Read More »

How To Fix Java Unsupported major.minor Version 51.0 Exception

When you run a program in Eclipse or command line. You may encounter the following exception java.lang.UnsupportedClassVersionError: Unsupported major.minor version 51.0. This is because your java class compiler version is bigger than the java class runtime version. In my environment, my java runtime version is 1.6, but my eclipse java compiler version is 1.8. So …

How To Fix Java Unsupported major.minor Version 51.0 Exception Read More »

How To Install Selenium IDE In Firefox And Google Chrome

Selenium IDE is very useful and flexible when the tester writes test case automation scripts. The Selenium IDE’s record function is a more important feature in this tool. It allows the developer or tester to record the business processes that need to be tested and save the user’s actions into a script during the test. …

How To Install Selenium IDE In Firefox And Google Chrome Read More »

Selenium Overview

Selenium is an automation test framework, it is mainly used to test web applications, it is open source and free. With this tool, test cases can be run directly in web browsers just like a real human operate the web browsers. It supports a lot of web browsers(Chrome, Firefox, IE, Opera, Safari, etc). Selenium also …

Selenium Overview Read More »

Software Testing Classification

There are a lot of terminologies in the software testing area, and these terminologies confused so many software testing beginners. Different methods can be classified from different points of view. So here is a summary of common software testing-related terms, you will have a general understanding of them after reading this article.