Skip to content

Commit

Permalink
Merge pull request #41 from vania-pooh/master
Browse files Browse the repository at this point in the history
Initial Selenium compatibility layer implementation (fixes #31)
  • Loading branch information
vania-pooh authored May 22, 2022
2 parents 8480ad6 + e69f5de commit ae7ae8f
Show file tree
Hide file tree
Showing 57 changed files with 957 additions and 111 deletions.
59 changes: 59 additions & 0 deletions lightning-adapter/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.aerokube.lightning</groupId>
<artifactId>lightning-parent</artifactId>
<version>1.2.2-SNAPSHOT</version>
</parent>

<artifactId>lightning-adapter</artifactId>

<name>Lightning Adapter</name>
<description>Adapter classes to use Lightning with existing Selenium tests</description>

<properties>
<selenium-api.version>4.1.4</selenium-api.version>
</properties>

<dependencies>
<dependency>
<groupId>com.aerokube.lightning</groupId>
<artifactId>lightning</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>${selenium-api.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit ae7ae8f

Please sign in to comment.