Demona
Demona

Reputation: 237

Running protractor e2e on Firefox

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

Answers (1)

Chris Traynor
Chris Traynor

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

Related Questions