healenium / healenium-web

Self-healing library for Selenium Web-based tests
Apache License 2.0
169 stars 40 forks source link

port 8000 is hard coded in rest client #128

Closed Zarkonan closed 3 years ago

Zarkonan commented 3 years ago

Fixed port in rest client. i update code at my local to config.getInt("serverPort") and its working
baseUrl = "http://" + config.getString("serverHost") + ":" + config.getInt("serverPort") + "/healenium"; imitateUrl = "http://" + config.getString("serverHost") + ":" + "8000" + "/imitate";

mean to say port 8000 is hard coded

Alex-Reif commented 3 years ago

It fixed in 3.1.4v