Skip to content

Commit

Permalink
Merge pull request #264 from healenium/feature/EPM-HLM-X01
Browse files Browse the repository at this point in the history
EPM-HLM Adjust change id attribute of the hlm-algorithm.
  • Loading branch information
Alex-Reif authored Feb 8, 2024
2 parents 4a232b5 + d685a51 commit 0c2b7f9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 9 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.epam.healenium</groupId>
<artifactId>healenium-web</artifactId>
<version>3.4.8</version>
<version>3.5.0</version>
<packaging>jar</packaging>
<name>healenium-web</name>
<description>healenium web client</description>
Expand Down Expand Up @@ -51,8 +51,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.apache>3.8.4</maven.apache>
<typesafe.version>1.4.2</typesafe.version>
<treecomparing.version>0.4.12</treecomparing.version>
<selenium.version>4.14.0</selenium.version>
<treecomparing.version>0.4.13</treecomparing.version>
<selenium.version>4.17.0</selenium.version>
<jacksondatabind.version>2.15.2</jacksondatabind.version>
<commonslang3.version>3.12.0</commonslang3.version>
<commonscodec.version>1.15</commonscodec.version>
Expand All @@ -67,8 +67,8 @@
<testcontainersjunit.version>1.16.3</testcontainersjunit.version>
<junit.version>5.8.2</junit.version>
<webdrivermanager.version>5.5.3</webdrivermanager.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<profiles>
Expand Down
19 changes: 15 additions & 4 deletions src/test/resources/compose-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.3"
services:

postgres-db:
image: postgres:11-alpine
image: postgres:15.5-alpine
container_name: postgres-db
ports:
- "5432:5432"
Expand All @@ -18,7 +18,9 @@ services:
- healenium

healenium:
image: healenium/hlm-backend:3.2.4
image: healenium/hlm-backend:3.4.3
container_name: healenium
restart: on-failure
ports:
- "7878:7878"
links:
Expand All @@ -29,15 +31,24 @@ services:
- SPRING_POSTGRES_USER=healenium_user
- SPRING_POSTGRES_PASSWORD=YDk2nmNs4s9aCP6K
- SPRING_POSTGRES_DB_HOST=postgres-db
- KEY_SELECTOR_URL=true
- KEY_SELECTOR_URL=false
- COLLECT_METRICS=true
- FIND_ELEMENTS_AUTO_HEALING=false
- HLM_LOG_LEVEL=info
volumes:
- ./screenshots/:/screenshots
- ./logs/:/logs
networks:
- healenium

selector-imitator:
image: healenium/hlm-selector-imitator:1.1
image: healenium/hlm-selector-imitator:1.3
container_name: selector-imitator
restart: on-failure
ports:
- "8000:8000"
networks:
- healenium

networks:
healenium:

0 comments on commit 0c2b7f9

Please sign in to comment.