diff --git a/tests/Browser/ClientPortal/ProfileSettingsTest.php b/tests/Browser/ClientPortal/ProfileSettingsTest.php
new file mode 100644
index 000000000000..89c59bfd300d
--- /dev/null
+++ b/tests/Browser/ClientPortal/ProfileSettingsTest.php
@@ -0,0 +1,39 @@
+driver->manage()->deleteAllCookies();
+ }
+
+ $this->browse(function (Browser $browser) {
+ $browser
+ ->visit(new Login())
+ ->auth();
+ });
+ }
+
+ public function testPageLoads()
+ {
+ $this->browse(function (Browser $browser) {
+ $browser
+ ->visitRoute('client.invoices.index')
+ ->click('button[data-ref="client-profile-dropdown"]')
+ ->click('a[data-ref="client-profile-dropdown-settings"]')
+ ->waitForText('Client Information')
+ ->assertSeeIn('span[data-ref="meta-title"]', 'Client Information')
+ ->visitRoute('client.logout');
+ });
+ }
+}