htmlelements-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ru.yandex.qatools.htmlelements</groupId> <artifactId>htmlelements-java</artifactId> <version>1.20.0</version> </dependency>
<?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>ru.yandex.qatools.htmlelements</groupId> <artifactId>htmlelements</artifactId> <version>1.20.0</version> </parent> <artifactId>htmlelements-java</artifactId> <name>Yandex QATools HtmlElements For Java</name> <properties> <selenium.version>3.141.59</selenium.version> <phantomjs-maven-plugin.version>0.7</phantomjs-maven-plugin.version> <phantomjs.binary.version>1.9.8</phantomjs.binary.version> </properties> <dependencies> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>${selenium.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.10.19</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>com.github.detro</groupId> <artifactId>phantomjsdriver</artifactId> <version>1.2.0</version> <exclusions> <exclusion> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-remote-driver</artifactId> </exclusion> </exclusions> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <!--https://github.com/klieber/phantomjs-maven-plugin--> <groupId>com.github.klieber</groupId> <artifactId>phantomjs-maven-plugin</artifactId> <version>${phantomjs-maven-plugin.version}</version> <executions> <execution> <goals> <goal>install</goal> </goals> </execution> </executions> <configuration> <version>${phantomjs.binary.version}</version> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.19</version> <configuration> <systemPropertyVariables> <phantomjs.binary.path>${phantomjs.binary}</phantomjs.binary.path> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> </project>