Following is the HTML code for which I need a unique XPath.
Type
@label references to an attribute and not a text node. You want refer to the text content. E. g. you should find the label with this text with fieldset/label[text() = 'White List'].
@label
fieldset/label[text() = 'White List']