For websites where Google Chrome's autocomplete doesn't work I have often written my own Javascript injection to autocomplete forms, either via a bookmarklet, (unpublished) Chrome extension or (for some edge cases) direct copy/paste into browser console.
One such website is NatWest Bankline: https://www.bankline.rbs.com/CWSLogon/logon.do
The user interface of this website has recently been changed. Whilst it's still possible to set the inputs' values via Javascript (see below), these values are ignored when the Continue button is clicked.
document.getElementById("customerId").value = "<<put customer ID here>>";
document.getElementById("userId").value = "<<put user ID here>>";
Note that it should be possible for any user that is not registered with this bank to test the website just with random values. You will see that it ignores values input via Javascript.
I am presuming that this is a deliberate measure on the bank's part to improve security (i.e. bots cannot spam this page to identify valid logins).
I am curious to know whether it's possible to circumvent this new restriction (whilst perhaps not facilitating bots). And also what technology it's using (e.g. is there a Javascript library for secure logins that they're using?).