Hello, please help me out how to select a certificate using the certificate name in the drop down box. I used the below to select certificates by keyboard clicks. I used java, Selenium and AutoIt in Eclipse. To select a certificate i used Down 5 to select the certificate from the drop down.
AutoItX auto = new AutoItX();
auto.sleep(3000);
auto.controlGetFocus("Windows Security");
auto.winWaitActive("[CLASS:#32770; INSTANCE:1]");
auto.send("{DOWN 5}",false);
auto.sleep(1000);
auto.send("{ENTER}", false);
Below attached image is Certificate dialogue box. I have to select a cert from it.