I am trying to connect my computer running TestComplete to a different computer running an Appium server. Currently, I am finding the IP address of the Appium computer via Settings -> WiFi -> Details -> IP Address. Then, I throw this address into TestComplete's 'Connect to Device' Server URL. This looks like "http://01.23.456.789:4723/wd/hub". I want to change it to use 'local' host instead of the direct IP Address as mentioned in this question: I have to specify my local Appium server URL. Where/How can I find the URL?.
When I change my Server URL in TestComplete to looks like: "http://localhost:4723/wd/hub" I get the error: "A connection with the server could not be established". When starting Appium, the host looks like: "0.0.0.0". Leaving this as is and changing it to "localhost" both do not fix my issue. What else is needed in addition to the previously mentioned stack overflow question do I need to do to fix my issue?