Renamed test methods

This commit is contained in:
butomo1989 2017-01-31 11:22:32 +01:00
parent 38a827fee1
commit a802bdddee
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ class MSiteChromeAndroidUITests(unittest.TestCase):
}
self.driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
def test_open_google(self):
def test_open_url(self):
self.driver.get('http://targeturl.com')
def tearDown(self):

View file

@ -16,7 +16,7 @@ class MSiteDefaultBrowserAndroidUITests(unittest.TestCase):
}
self.driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
def test_open_google(self):
def test_open_url(self):
self.driver.get('http://targeturl.com')
def tearDown(self):

View file

@ -19,7 +19,7 @@ class MSiteFirefoxAndroidUITests(unittest.TestCase):
}
self.driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)
def test_open_google(self):
def test_open_url(self):
self.driver.get('http://targeturl.com')
def tearDown(self):