Selenium

Selenium moving the mouse over an element

Problem : ‘Hover’ functionality failing in smaller screens Real Problem : MoveToElement(element).Click().Build().Perform() works only when the element is visible in the screen. Easy Solution is move to scroll down/up to view that element, then click. Please find below, the complete code for Hover functionality including the scrollIntoView.

Statement & Decision Coverage

I though sharing the difference between statement coverage in decision coverage. Statement : “an entity in programming language which is typically the smallest indivisible unit of execution” Statement testing is a white box test design technique. Statement coverage checks the “True” condition only while the decision or branch coverage covers both the “True & False” conditions Decision …

Statement & Decision Coverage Read More »