The structure of the element I am trying to locate is as follows:
/html/body/div/div[3]/form/table/tbody/tr/td/**div[2**]/table[2]/tbody/tr[2]/td[2]/input
<input type="password" name="0.2.1.3.3.6.5.1.2.1.1" maxlength="9">
Despite my attempts with XPath and CSS selectors in WebDriver using JavaScript, I still can't find this element.
It seems that there is a script tag within the mentioned div[2] tag - could this be causing the issue?
Your help would be greatly appreciated!