Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.49 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.49 KB

healenium-cucumber-example

Docker Pulls License

1. Start Healenium components

2. Configuration RemoteWebDriver for Healenium

3. Run test

How to start

1. Start Healenium components

Go into healenium folder or download

cd healenium

Run Healenium with Selenium-Grid:

docker-compose up -d

Run Healenium with Selenoid

docker-compose -f docker-compose-selenoid.yaml up -d

2. Configuration RemoteWebDriver for Healenium

To run tests using Healenium, create a Remote Web Driver with URL http://<hlm-proxy-host>:<hlm-proxy-port>.
In the case of a local launch: http://localhost:8085

        ChromeOptions options = new ChromeOptions();
        WebDriver driver = new RemoteWebDriver(new URL("http://localhost:8085"), options);

3. Run test

To run tests in terminal with pytest you need to go to execute next commands:

mvn clean test

Community / Support