0

I am trying to click a button which is actually a submit without a form which looks some thing like this and store the result in an object

<div class="searchBar-input">
    <input id="front-page-search" value="Enter Keyword(s)" type="text">
</div>


<div class="searchBar-submit">
    <input id="searchBtn" value="Search" type="submit">
</div>

I have tried puts page.forms and I am getting nothing as there is no form on the page. Its just a text box whose value I have to submit.

I have googled but I found everything about form submit and links. How can I click this? Any suggestions.Thanks in advance

Arihant Godha
  • 2,339
  • 2
  • 26
  • 50

1 Answers1

0

try this :

<div class="searchBar-submit">
   <input id="searchBtn" value="Search" type="submit"  onclick="document.forms[0].submit();" ></div>