C Functions

There is always a confusion related to variables in LoadRunner script. Because some variables require defining at the start of the script while some variables can be used directly without any initialization. Let’s discuss what is the exact difference in them? Basically, there are two types of variable in the LoadRunner: 1. Language-Specific Variables: Language-specific …

C Functions Read More »

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.