diff --git a/README.md b/README.md
index 2501fa7..2acd84b 100644
--- a/README.md
+++ b/README.md
@@ -415,6 +415,8 @@ There is a collection of postman tests `nanoFramework WebServer E2E Tests.postma
- Set the `base_url` variable to match your device IP address
- Choose request you want to test or run whole collection and check tests results.
+The WebServerE2ETests project requires the name and credentials for the WiFi access point. That is stored in the WiFi.cs file that is not part of the git repository. Build the WebServerE2ETests to create a template for that file, then change the SSID and credentials. Your credentials will not be part of a commit.
+
## Feedback and documentation
For documentation, providing feedback, issues and finding out how to contribute please refer to the [Home repo](https://github.com/nanoframework/Home).
diff --git a/tests/WebServerE2ETests/.gitignore b/tests/WebServerE2ETests/.gitignore
new file mode 100644
index 0000000..eeffe7a
--- /dev/null
+++ b/tests/WebServerE2ETests/.gitignore
@@ -0,0 +1 @@
+WiFi.cs
\ No newline at end of file
diff --git a/tests/WebServerE2ETests/Program.cs b/tests/WebServerE2ETests/Program.cs
index cd218a5..290b58d 100644
--- a/tests/WebServerE2ETests/Program.cs
+++ b/tests/WebServerE2ETests/Program.cs
@@ -13,10 +13,8 @@
namespace WebServerE2ETests
{
- public class Program
+ public partial class Program
{
- private const string Ssid = "yourSSID";
- private const string Password = "YourPAssword";
private static WebServer _server;
public static void Main()
diff --git a/tests/WebServerE2ETests/WiFi.cs b/tests/WebServerE2ETests/Template/WiFi.cs
similarity index 100%
rename from tests/WebServerE2ETests/WiFi.cs
rename to tests/WebServerE2ETests/Template/WiFi.cs
diff --git a/tests/WebServerE2ETests/WebServerE2ETests.nfproj b/tests/WebServerE2ETests/WebServerE2ETests.nfproj
index b0f3982..210b962 100644
--- a/tests/WebServerE2ETests/WebServerE2ETests.nfproj
+++ b/tests/WebServerE2ETests/WebServerE2ETests.nfproj
@@ -22,6 +22,7 @@
+
@@ -74,9 +75,9 @@
-
-
-
+
+
+
\ No newline at end of file