Following html code produces a pop up to add a product. Trying to find xpath or css that will work in selenium that allows to click on button "add" to add new product.
I attempted using this xpath //div[18]/div[2]/div/button which works only for one session. When you close browser and reopen , above xpath doesn't work. So, how we can write such a xpath which doesn't have to pass div[number] in this case div[18].
<div style="height: auto; min-height: 104px; width: auto;" class="dialog ui-dialog-content ui-widget-content">
<fieldset><legend>search</legend>
<div id="nameorids">
<input type="radio">name
<input type="radio">id
</fieldset>
<div style="clear: both; padding-top: 5px; float: right;"><button class="add">add</button></div></div>