I am trying to use Healenium-Web for my Test Automation I am running through Docker. I am not sure what was the issue, after creating the SelfHealingDriver, I am getting error and test execution not happening. Earlier I was able to successfully run the Healenium Self Healing while using 3.4.6.
After my system upgrade & STS upgrade, I am facing issues with healenium.
Healenium Web version
3.4.8
Healenium Backend version
3.4.4
Selenium version
4.14.1
Platform
Java
Properties file
No response
Logs appeared during using Healenium
WARN healenium.lambda$findAnnotatedInTrace$3 - Failed to check class: <My PageObject Class created by Selenium>
Describe the problem
I am trying to use Healenium-Web for my Test Automation I am running through Docker. I am not sure what was the issue, after creating the SelfHealingDriver, I am getting error and test execution not happening. Earlier I was able to successfully run the Healenium Self Healing while using 3.4.6.
After my system upgrade & STS upgrade, I am facing issues with healenium.
Healenium Web version
3.4.8
Healenium Backend version
3.4.4
Selenium version
4.14.1
Platform
Java
Properties file
No response
Logs appeared during using Healenium
Additional context
below provided Healenium Compose File & my Docker dynamic Grid Compose file.
version: "3"
services:
postgres-db: image: postgres:15.5-alpine container_name: postgres-db restart: always ports:
healenium
healenium: image: healenium/hlm-backend:3.4.4 container_name: healenium restart: on-failure ports:
HLM_LOG_LEVEL=debug
volumes:
healenium
selector-imitator: image: healenium/hlm-selector-imitator:1.4 container_name: selector-imitator restart: on-failure ports:
networks: healenium: name: healenium driver: bridge
Docker Dynamic Grid: version: "3" services: node-docker: image: selenium/node-docker:4.17.0-20240123 volumes:
healenium
1_admin-hub: image: selenium/hub:4.17.0-20240123 ports:
networks: healenium: external: true
config.toml [docker] configs = [ "selenium/standalone-firefox:4.17.0-20240123", '{"browserName": "firefox"}', "selenium/standalone-chrome:4.17.0-20240123", '{"browserName": "chrome"}', "selenium/standalone-edge:4.17.0-20240123", '{"browserName": "MicrosoftEdge"}' ]
url = "http://127.0.0.1:2375"
video-image = "selenium/video:ffmpeg-6.1-20240123"