So I\'m trying to navigate to a page in IE9 using Selenium that, when loading the page, says there is a certificate error. Using AutoIT I\'m able to get it to click within the b
If this is typical SSL certificate error warning displayed in IE, then you may want to use JavascriptExecutor to handle it, as described in detail in this blog post:
http://automatictester.co.uk/2014/08/03/handling-ssl-certificate-errors-in-selenium/
In general, try to avoid mixing AutoIT with Selenium, unless you really have to.