How to select an element from table if there is no ID

When we want to select a value from a table but the element doesn’t have id or other identification, we can use the other cells of the table to identify the value. For example: There is a table with stock market data and we want to get the value of the percentage of change (the […]

Read more
Getting started with JMeter II – record traffic with Jmeter

Here will be described how to simply record traffic with Jmeter. The HTTP Proxy Server allows Jmeter to watch and record the traffic and stores them directly into the test plan. First download and install all necessary packages: 1. Java http://www.oracle.com/technetwork/java/javase/downloads/index.html – After install setup the environment variables 2. Jmeter Download Jmeter from following website, […]

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