Removed ENV variables and added Appium default server and port

This commit is contained in:
Shashikant
2015-03-07 10:28:55 +00:00
parent a22995541d
commit 141c8151cb

View File

@@ -24,8 +24,8 @@ class AppiumFactory extends Selenium2Factory
->children() ->children()
->scalarNode('browser')->defaultValue('remote')->end() ->scalarNode('browser')->defaultValue('remote')->end()
->append($this->getCapabilitiesNode()) ->append($this->getCapabilitiesNode())
->scalarNode('appium_host')->defaultValue(getenv('APPIUM_HOST'))->end() ->scalarNode('appium_host')->defaultValue('0.0.0.0')->end()
->scalarNode('appium_port')->defaultValue(getenv('APPIUM_PORT'))->end() ->scalarNode('appium_port')->defaultValue('4723')->end()
->end() ->end()
; ;
} }