How To Run Microsoft Internet Explorer And Edge In Selenium Webdriver Automation Script
It is very easy to run test cases using Internet Explorer and Edge in selenium webdriver. You can not launch Internet Explorer directly in java but you can use the selenium IE Driver server to communicate with the Internet Explorer instead. This article will tell you how to run Microsoft Internet Explorer and Edge in …
How To Run Microsoft Internet Explorer And Edge In Selenium Webdriver Automation Script Read More »
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 Create Java Project With MyEclipse
Hello, today I will show you how to create a java project with MyEclipse. It is the same in eclipse, but I use MyEclipse so I just show you how to create it with MyEclipse. Before using MyEclipse to start writing java code, you should download and install JDK and MyEclipse first. I use jdk1.7 in …