Running webdriver code in JMeter

With the improvements in technology more and more of the business logic gets executed on the client side and it’s not easy to get a clear picture of the perceivable performance by using pure JMeter tests only. To extend these measurements JMeter-Webdriver plugin in JMeter can be handy to run WebDriver tests using actual browsers […]

Read more
BlazeMeter – Work with Selenium Webdriver

It was a long time we wrote about the BlazeMeter and during this time it comes more reliable, easy to use and there are also some new, great tools (Here you can find our latest post about BlazeMeter: Previous post about loadtesting with BlazeMeter). Maybe the most important feature is that now you can use […]

Read more
Browserstack integration with junit and webdriver

The purpose of this article is to show how easy is to integrate webdriver with architectures on the cloud, in this case with Browserstack. For every new tool the first thing to do is to check out and examine the documentation. The basic steps are very well documented, the examples and the thorough explanations give […]

Read more
Parameterized JUnit tests with Selenium WebDriver

With JUnit 4 we’re able to Parameterize the tests. Parameterized tests allow developers to run the same tests over and over again using different values. Now we introduce the way to use the parameterized JUnit tests with Selenium WebDriver. Here is the sample code, which opens the Google search page, searches three different phrases and […]

Read more
Basic HTTP authentication and Webdriver

I encountered an interesting problem last week. I had to make an automated test scripts on a test site which was protected by Basic HTTP Authentication. I’ll assume that everybody knows how Basic HTTP Authentication works and will just focus on the solution:  WebDriver driver = new ChromeDriver();  driver.get(“http://username:password@URL”); Of course you should change the […]

Read more
How to use TestNG with Selenium WebDriver

(The precondition for this tutorial that the Selenium WebDriver is already installed.) Firstly go to TestNG website’s download page, and follow the instructions to install the TestNG plugin to Eclipse. (http://testng.org/doc/download.html) After the TestNG was installed, create a new java class file (without main method). Create the setUp() function. To this function you can put […]

Read more
Webdriver – XPath and CSS selector performance tip

There are cases when using XPath has some advantages over CSS selectors. For example if there is a site where we can select an item only by text because the other type of locators are not clear(id’s and classes are generated and they are used in multiple places). What can we do in this situation? […]

Read more
How to integrate a JUnit4 – Webdriver test into JMeter

JMeter is an open source load testing tool, with many capabilities. One of the many interesting things which can be done is to integrate a webdriver test into a JMeter test suite. Before start make sure that Java and JMeter properly installed, and the webdriver libraries are downloaded. You can download them from the following […]

Read more