How do I use AliasVault?
-
Create a random identity with an associated email address. To get started, simply click the "+ New Identity" button in the top right corner.
+
Create a random identity with an associated email address. To get started, simply click the "+ New Alias" button in the top right corner.
What is the purpose of AliasVault?
@@ -28,7 +28,7 @@
Get Started Now
- Go ahead and create a new login by clicking "+ New Identity" in the top right. Or explore these options:
+ Go ahead and create a new login by clicking "+ New Alias" in the top right. Or explore these options:
diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs
index 0c16a2122..dd5ea367a 100644
--- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs
+++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/CredentialTests.cs
@@ -100,7 +100,7 @@ public class CredentialTests : ClientPlaywrightTest
Assert.That(pageContent, Does.Contain(serviceNameBefore), "Created credential service name does not appear on login page.");
// Click the edit button.
- var editButton = Page.Locator("text=Edit credentials entry").First;
+ var editButton = Page.Locator("text=Edit").First;
await editButton.ClickAsync();
await WaitForUrlAsync("edit", "Save Credentials");
@@ -113,7 +113,7 @@ public class CredentialTests : ClientPlaywrightTest
var submitButton = Page.Locator("text=Save Credentials").First;
await submitButton.ClickAsync();
- await WaitForUrlAsync("credentials/**", "Delete credentials entry");
+ await WaitForUrlAsync("credentials/**", "Delete");
pageContent = await Page.TextContentAsync("body");
Assert.That(pageContent, Does.Contain("Credentials updated"), "Credential update confirmation message not shown.");
diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs
index 381205530..48db7736f 100644
--- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs
+++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard1/JwtTokenTests.cs
@@ -36,7 +36,7 @@ public class JwtTokenTests : ClientPlaywrightTest
await WaitForUrlAsync("test/2", "Test 2 OK");
var pageContent = await Page.TextContentAsync("body");
- Assert.That(pageContent, Does.Contain("Test webapi call 2."), "No page content after refreshing access token.");
+ Assert.That(pageContent, Does.Contain("Test webapi call 2"), "No page content after refreshing access token.");
}
///
@@ -74,7 +74,7 @@ public class JwtTokenTests : ClientPlaywrightTest
await WaitForUrlAsync(startUrl, "Test 1 OK");
var pageContent = await Page.TextContentAsync("body");
- Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database with a expired JWT token.");
+ Assert.That(pageContent, Does.Contain("Test webapi call 1"), "No index content after unlocking database with a expired JWT token.");
}
///
diff --git a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs
index e8c300368..dedad1ec7 100644
--- a/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs
+++ b/src/Tests/AliasVault.E2ETests/Tests/Client/Shard5/UnlockTests.cs
@@ -30,10 +30,10 @@ public class UnlockTests : ClientPlaywrightTest
await RefreshPageAndUnlockVault();
// Check if we get redirected back to the page we were trying to access.
- await WaitForUrlAsync(startUrl, "Test webapi call 1.");
+ await WaitForUrlAsync(startUrl, "Test webapi call 1");
var pageContent = await Page.TextContentAsync("body");
- Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database.");
+ Assert.That(pageContent, Does.Contain("Test 1 OK."), "No index content after unlocking database.");
}
///
@@ -69,9 +69,9 @@ public class UnlockTests : ClientPlaywrightTest
await submitButton.ClickAsync();
// Check if we get redirected back to the page we were trying to access.
- await WaitForUrlAsync(startUrl, "Test webapi call 1.");
+ await WaitForUrlAsync(startUrl, "Test webapi call 1");
var pageContent = await Page.TextContentAsync("body");
- Assert.That(pageContent, Does.Contain("Test webapi call 1."), "No index content after unlocking database.");
+ Assert.That(pageContent, Does.Contain("Test 1 OK."), "No index content after unlocking database.");
}
}