I am automating tests using selenium chrome webdriver. Whenever I launch the site, I get a certificate selection popup like the one below:
The following code works in Java:
try {
driver.get(url);
} catch (Exception e) {
e.printStackTrace();
}
};
public void myfunction {
try {
Thread mthread = new Thread(mlauncher);
mthread.start
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
} catch (Exception e) {
e.printStackTrace();
}
I have not found code that works in c#.