I am finding difficulty in identifying search button in selenium. The issue is the same when i am using xpath. My action would be to click on SearchButton Here is the snippet of HTML code.
I am trying to identify element using below xpath
WebElement search=new WebDriverWait(driver,15)
.until(ExpectedConditions.presenceOfElementLocated(
By.xpath("//p[@class='btnRow']/name[@name='SearchButton']")));
Kindly help me in this regard as i am not able to proceed