How to collect network traffic automatically with Selenium WebDriver
If you need to collect performance data and http web traffic between your browser and web server. You can use following 2 methods to make the process automatically with Selenium WebDriver. Log http traffic data into har files using Firebug and netExport Firefox add-on. Use BrowserMob Proxy as proxy server to route web page request and …
How to collect network traffic automatically with Selenium WebDriver Read More »
How to create java project with myeclipse
Hello, today i will show you how to create java project with myeclipse. It is 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 my example, so …
Selenium Overview
Selenium is an automation test tool, 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 being operate the web browsers. It support a lot of web browsers(chrome, Firefox, IE, opera, safari, etc). There also …