From the below html i want to check if the <article>
tag available or not using webdriver with java
HTML code
<div id="patentResultList">
<article>
<div class="search_section_title"></div>
<div class="search_basic_info"></div>
</article>
</div>
First i need to check if article tag
available or not if available then i move to inside the div tag, if not will skip.
please guid me.