Plume/script/browser_test/instance.py

8 lines
186 B
Python
Raw Normal View History

#!/usr/bin/python3
from utils import Browser
class InstanceName(Browser):
def test_name_in_title(self):
self.get("/")
self.assertIn("plume-test", self.driver.title)