We can simulate mouse over the element action/Event in selenium webdriver in C#.Net using below syntax
You will have to import below namespace
Imports OpenQA.Selenium.Interactions;
suppose you want to get your mouse on the web element say - myelement
Below code will do it for you.
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com
You will have to import below namespace
Imports OpenQA.Selenium.Interactions;
suppose you want to get your mouse on the web element say - myelement
Below code will do it for you.
Actions builder = new Actions(driver);
builder.MoveToElement(myelement).Build().Perform();
What do you think on above selenium topic. Please provide your inputs and comments. You can write to me at reply2sagar@gmail.com
Nice
ReplyDelete