I need to find the value thats inside the 2nd paragraph text value
var id3 = driver.FindElement(By.XPath("//div[contains(@class, 'col-xs-2 item-data-block')]/p[text()='Id. 3']")).Text;
Console.WriteLine(id3);
<div class="col-xs-2 item-data-block">
<p class="tab">Id. 3</p>
<p>A09999999</p>
</div>
Because my webpage have +12 classes with the same name, I also need to use the paragraph text value as an searching attribute. But I dont know how to get the 2nd paragraph value. Ive provided what Ive done... Thanks.