Download htmlelements-java-1.17.jar file

Introduction

You can download htmlelements-java-1.17.jar in this page.

License

Open Source

Type List

htmlelements-java-1.17.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/ru.yandex.qatools.htmlelements/htmlelements-java/pom.properties
META-INF/maven/ru.yandex.qatools.htmlelements/htmlelements-java/pom.xml
ru.yandex.qatools.htmlelements.annotations.Name.class
ru.yandex.qatools.htmlelements.annotations.Timeout.class
ru.yandex.qatools.htmlelements.element.Button.class
ru.yandex.qatools.htmlelements.element.CheckBox.class
ru.yandex.qatools.htmlelements.element.FileInput.class
ru.yandex.qatools.htmlelements.element.Form.class
ru.yandex.qatools.htmlelements.element.HtmlElement.class
ru.yandex.qatools.htmlelements.element.Image.class
ru.yandex.qatools.htmlelements.element.Link.class
ru.yandex.qatools.htmlelements.element.Named.class
ru.yandex.qatools.htmlelements.element.Radio.class
ru.yandex.qatools.htmlelements.element.Select.class
ru.yandex.qatools.htmlelements.element.Table.class
ru.yandex.qatools.htmlelements.element.TextBlock.class
ru.yandex.qatools.htmlelements.element.TextInput.class
ru.yandex.qatools.htmlelements.element.TypifiedElement.class
ru.yandex.qatools.htmlelements.exceptions.HtmlElementsException.class
ru.yandex.qatools.htmlelements.loader.HtmlElementLoader.class
ru.yandex.qatools.htmlelements.loader.decorator.HtmlElementClassAnnotationsHandler.class
ru.yandex.qatools.htmlelements.loader.decorator.HtmlElementDecorator.class
ru.yandex.qatools.htmlelements.loader.decorator.HtmlElementFieldAnnotationsHandler.class
ru.yandex.qatools.htmlelements.loader.decorator.HtmlElementLocatorFactory.class
ru.yandex.qatools.htmlelements.loader.decorator.ProxyFactory.class
ru.yandex.qatools.htmlelements.loader.decorator.proxyhandlers.HtmlElementListNamedProxyHandler.class
ru.yandex.qatools.htmlelements.loader.decorator.proxyhandlers.TypifiedElementListNamedProxyHandler.class
ru.yandex.qatools.htmlelements.loader.decorator.proxyhandlers.WebElementListNamedProxyHandler.class
ru.yandex.qatools.htmlelements.loader.decorator.proxyhandlers.WebElementNamedProxyHandler.class
ru.yandex.qatools.htmlelements.pagefactory.CustomElementLocatorFactory.class
ru.yandex.qatools.htmlelements.utils.HtmlElementUtils.class

Pom

htmlelements-java-1.17.pom file content.

<?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.17</version>
    </parent>

    <artifactId>htmlelements-java</artifactId>
    <name>Yandex QATools HtmlElements For Java</name>

    <properties>
        <selenium.version>2.53.0</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>

POM Entry

<dependency>
   <groupId>ru.yandex.qatools.htmlelements</groupId>
   <artifactId>htmlelements-java</artifactId>
   <version>1.17</version>
</dependency>

Download

If you think the following htmlelements-java-1.17.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download htmlelements-java-1.17.jar file




PreviousNext

Related