Skip to content

Contains a library for supporting automatically frame switching inside page (or any other abstractions) classes

License

Notifications You must be signed in to change notification settings

RomanKhachko/frame-switcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frame-switcher

Contains a library for supporting automatically frame switching inside page (or any other abstractions) classes. It's very easy to use with page object pattern.

usage

In order to use project you need:

  • add FrameSwitcher dependency in your pom.xml

    <dependency>
      <groupId>com.github.RomanKhachko.fsp</groupId>
      <artifactId>FSP-main</artifactId>
      <version>2.0.3</version>
    </dependency>
  • add following plugin to a build section

org.codehaus.mojo aspectj-maven-plugin 1.7
        <configuration>
            <source>${java.version}</source>
            <target>${java.version}</target>
            <complianceLevel>${java.version}</complianceLevel>
            <aspectLibraries>
                <aspectLibrary>
                    <groupId>com.github.RomanKhachko.fsp</groupId>
                    <artifactId>FSP-main</artifactId>
                </aspectLibrary>
            </aspectLibraries>
        </configuration>

        <executions>
            <execution>
                <goals>
                    <goal>compile</goal>
                </goals>
            </execution>
        </executions>
    </plugin>
</plugins>
``` * add property java.version (optional), or use constant values in proper plaseces
<properties>
  <java.version>1.8</java.version>
</properties>
*Please note, you can specify any version of java here, but not lower than 1.6*

version

2.0.3

examples

Please, take a look at a sample project with examples of usage.

contact

romankhachko@gmail.com

About

Contains a library for supporting automatically frame switching inside page (or any other abstractions) classes

Resources

License

Stars

Watchers

Forks

Packages

No packages published