Beliebte Suchanfragen

Cloud Native

DevOps

IT-Security

Agile Methoden

Java

|
//

Selenium and SSL Certificates

5.2.2010 | 4 minutes of reading time

Selenium is a very efficient tool for testing web sites. The Selenium-IDE , that comes as a plugin to Firefox, makes it easy to record the required steps of a test. And to achieve real test automation Selenium is often integrated with some agile testing tool like the Robot Framework that comes with its own implementation of the Selenium API .

But the automated testing of web sites is thwarted heavily once a page is opened that is signed with SSL , but where the certificate has not been authorized properly. The browser slams on the brakes and opens a dialogue asking the user to accept the certificate. This is of course not a desirable behaviour for an automated test.


And at the same time this is the first pitfall, because on first sight it seems the problem can be solved easily by accepting the certificate permanently during the first test execution. But already the next test run will show that this is not the case as the dialogue will show up again. The reason for this is originated in the fact that Selenium is creating a new temporary profile for Firefox on every startup. This has the advantage that deadlock situations are avoided and there are no (potentially strange) plugins used that might have impact on the test results. But how to solve now our problem with the certificates?

Luckily the solution is quite simple and is as well based on profiles. First of all a new profile has to be created and then Firefox must be launched using this new profile. Then the SSL-signed web sites must be opened and the certificates accepted parmanently. Afterwards all files should be deleted from the directory storing the profile with the exception of those files containing the information on the accepted certificates. Now it is possible to lauch the selenium server using this new profile as a kind of template, which means that files in this profile are overriding the corresponding files in the temporary directory. With this kind of configuration tests for the SSL-signed web sites should pass without any problems (and nasty dialogues). Of course it is now possible to start Firefox with this profile at any time to accept additional certificates. But it should be ensured that afterwards the newly created additional files are again removed from the profile directory.

The profile that is created this way should not be used to daily work but really only for testing. This ensures that the “test-profile” is kept clean. Once work (accepting certificates) is done using this profile one should switch back to ones original (default) profile.

In the following the concrete steps are listed to achieve the required configuration.

1. Create a new Firefox profile
For this Firefox must be started from the command line using the “-P” option. Under windows with a default installation this would be:
“C:\Program Files\Mozilla Firefox\firefox.exe” -P

In the dialogue that shows up a new profil needs to be created. The chosen name does not matter, but it should be ensured that the name of the chosen directory does not contain any spaces to avoid problems later on. Furthermore it might be a good idea to create the directory within the test project and put it under version control as well. An example for a proper name would be: C:\Subversion\Project\FF_Profile

It is really highly recommended to put those files under version control. This has the advantage that not every developer need to accept all the required certificates individually. Furthermore this enables an administrator to perform the required steps on the official test-server running selenium without the help of a developer by just creating a new profile and copy the files into the proper profile directory.

2. Accept certificates
Now Firefox can be started with the new profile. Then one has to browse to the required web sites to accept the certificates their permanently.

3. Cleaning the Profile
Now one must remove all files from the new profile directory but cert8.db and cert_override.txt.

4. Start Selenium-Server with profil template
Now the Selenium-Server can be started utilizing the new profile template:
java -jar selenium-server.jar -firefoxProfileTemplate

Or using the directory from the example above:
java -jar selenium-server.jar -firefoxProfileTemplate C:\Subversion\Project\FF_Profile

Of course all project-specific options should be set still when starting the Selenium-Server.

|

share post

Likes

0

//

More articles in this subject area

Discover exciting further topics and let the codecentric world inspire you.

//

Gemeinsam bessere Projekte umsetzen.

Wir helfen deinem Unternehmen.

Du stehst vor einer großen IT-Herausforderung? Wir sorgen für eine maßgeschneiderte Unterstützung. Informiere dich jetzt.

Hilf uns, noch besser zu werden.

Wir sind immer auf der Suche nach neuen Talenten. Auch für dich ist die passende Stelle dabei.