Team, please suggest me how to pull the first <div id="Label" table details from a webpage, where i have 2 same <div id="Label" in my webpage.
Below is the html codes for your reference that I have in the webpage
<!-- regular tabs content -->
<div id="Label" class="Serial">
<div class="col-md-12" id="Check">
<table class="table-basic">
<thead class="table-header">
<!-- mobile-tabs -->
<div id="Label" class="Serial">
<div class="col-md-12" id="Check">
<table class="table-basic">
<thead class="table-header">
I tried with the set property below which pulls two tables after one by one, where i need to get only one table (only first node list).
Please suggest me to pull only first table content..
Thanks a lot..
Below is the html codes for your reference that I have in the webpage
<!-- regular tabs content -->
<div id="Label" class="Serial">
<div class="col-md-12" id="Check">
<table class="table-basic">
<thead class="table-header">
<!-- mobile-tabs -->
<div id="Label" class="Serial">
<div class="col-md-12" id="Check">
<table class="table-basic">
<thead class="table-header">
I tried with the set property below which pulls two tables after one by one, where i need to get only one table (only first node list).
Set Nodelist = Driver.FindElementsByCss(".table-basic")
Please suggest me to pull only first table content..
Thanks a lot..