Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-11-20 01:05:55 +0300
committernachoparker <nacho@ownyourbits.com>2017-11-20 01:16:23 +0300
commit81f0bd0f7ae486c67457205c7611eeb4796bbf7c (patch)
treecd0b9acfeefbca6c5c81132b3eb50d3997207e1f /tests
parentde4e0c7cb29caa2cb1592fbfa53125594877c33a (diff)
tests: correct new title
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tests.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 9cab4a93..7a5b3291 100755
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -39,7 +39,7 @@ class AdminWebTest(unittest.TestCase):
driver = self.driver
driver.implicitly_wait(150) # first run can be really slow on QEMU
driver.get("https://" + IP + "/index.php/settings/admin")
- self.assertIn("Nextcloud", driver.title)
+ self.assertIn("NextCloudPi", driver.title)
trusted_domain_str = "You are accessing the server from an untrusted domain"
self.assertNotIn(trusted_domain_str, driver.page_source)
driver.find_element_by_id("user").send_keys("admin")
@@ -84,9 +84,9 @@ class CreateUserTest(unittest.TestCase):
# navigate a little bit
driver.get("https://" + IP + "/index.php/settings/admin")
- self.assertIn("Nextcloud", driver.title)
+ self.assertIn("NextCloudPi", driver.title)
driver.get("https://" + IP + "/index.php/settings/apps")
- self.assertIn("Nextcloud", driver.title)
+ self.assertIn("NextCloudPi", driver.title)
def tearDown(self):
self.driver.close()
@@ -107,7 +107,7 @@ class LoginNewUserTest(unittest.TestCase):
driver.implicitly_wait(210) # first run can be really slow on QEMU
driver.get("https://" + IP)
- self.assertIn("Nextcloud", driver.title)
+ self.assertIn("NextCloudPi", driver.title)
driver.find_element_by_id("user").send_keys("test_user1")
driver.find_element_by_id("password").send_keys("ownyourbits")
driver.find_element_by_id("submit").click()
@@ -119,7 +119,7 @@ class LoginNewUserTest(unittest.TestCase):
# navigate a little bit
driver.get("https://" + IP + "/index.php/settings/personal")
- self.assertIn("Nextcloud", driver.title)
+ self.assertIn("NextCloudPi", driver.title)
def tearDown(self):
self.driver.close()