Reputation: 237
I have a site which uses client certificate to authenticate the user and I want to do e2e testing for that site
I tried to run protractor with firefox browser, it opens the browser but then it is not asking for user identification(screen to ask user to pick the client certificates).
I have tried using chrome and it asks for the SSL certificate to choose but for firefox no luck, can somebody guide me on this?
Upvotes: 0
Views: 367
Reputation: 460
Selenium webdriver and, by extension, Protractor does not usually support the latest versions of Firefox. To ensure you are using a supported version, do not use "directconnect" in your protractor config file. You should use the firefox driver with a selenium server spun up.
Upvotes: 1