TestingQ.com

TestingQ.com

-->Exclusive Portal for Testing Jobs

Recent Posts

Difference between findElement() and findElements() in Selenium?

findElement():   It is used to find the first element in the current web page matching to the specified locator value. Syntax: WebEleme...
Read More

How to select a value from Dropdown in Selenium ?

We can select a Value from Drop down primarily in 3 ways, by using below methods. selectByValue selectByVisibleText sectByIndex 1) sele...
Read More

Double Click and Right Click Syntax in Selenum?

Double Click Actions actions = new Actions(driver); WebElement element = driver.findElement(By.id("ID")); actions.doubleCl...
Read More

Drag and drop syntax in Selenium?

Element which needs to drag. WebElement source=driver.findElement(By.xpath("//*[@id='element1']")); ...
Read More