Set default browser, mobile web test parameter and docker compose example

This commit is contained in:
Andrejs Cunskis
2017-05-24 15:50:34 +03:00
parent 333c2b2a90
commit 5501a20426
9 changed files with 71 additions and 7 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ class TestAppium(TestCase):
def test_config_creation(self):
from src import CONFIG_FILE
self.assertFalse(os.path.exists(CONFIG_FILE))
app.create_node_config('test', 'Chrome', '127.0.0.1', 4723, '127.0.0.1', 4444)
app.create_node_config('test', 'android', '127.0.0.1', 4723, '127.0.0.1', 4444)
self.assertTrue(os.path.exists(CONFIG_FILE))
os.remove(CONFIG_FILE)