How to do a mouse hover/over using selenium webdriver to see the hidden menu without performing any mouse clicks?
There is a hidden menu on website which i am testing th
yeah the question you posted is about tool tip
perform mouse hover the then capture its attribute value
closely observe your HTML code manually move your mouse pointer on the element & observe in which attribute value your hidden text present
Actions builder = new Actions(driver)
builder.MoveToElement(driver.FindElement(By.Id("Content_AdvertiserMenu1_LeadsBtn")))
.Click().Build().Perform();
String value=driver.FindElement(By.Id("Content_AdvertiserMenu1_LeadsBtn")).getAttribute("attribute value in which hidden text presents");