Javauto/javauto-core


Javauto is a programming language for automation. Derived from Java, it is a cross platform alternative to something like AutoIt.

Download


Step 1. Add the JitPack repository to your build file

Add it in your root settings.gradle at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url 'https://jitpack.io' }
		}
	}

Add it in your settings.gradle.kts at the end of repositories:

	dependencyResolutionManagement {
		repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
		repositories {
			mavenCentral()
			maven { url = uri("https://jitpack.io") }
		}
	}

Add to pom.xml

	<repositories>
		<repository>
		    <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
	</repositories>

Add it in your build.sbt at the end of resolvers:

 
    resolvers += "jitpack" at "https://jitpack.io"
        
    

Add it in your project.clj at the end of repositories:

 
    :repositories [["jitpack" "https://jitpack.io"]]
        
    

Step 2. Add the dependency

	dependencies {
		implementation 'com.github.Javauto:javauto-core:v1.1.0'
	}
	dependencies {
		implementation("com.github.Javauto:javauto-core:v1.1.0")
	}
	<dependency>
	    <groupId>com.github.Javauto</groupId>
	    <artifactId>javauto-core</artifactId>
	    <version>v1.1.0</version>
	</dependency>

                            
    libraryDependencies += "com.github.Javauto" % "javauto-core" % "v1.1.0"
        
        

                            
    :dependencies [[com.github.Javauto/javauto-core "v1.1.0"]]
        
        

Readme


alt tag

Javauto is a programming language for automation. Derived from Java, it is a cross platform alternative to something like AutoIt.

build Join the chat at https://gitter.im/Javauto/javauto-core

Links

  • Website: http://javauto.github.io/
  • Gitter.im chats: javauto-core
  • Javauto Helper exists to simplify the process of finding mouse coordinates and pixel colors.
  • Java Lookup helps a user find relevant documentation for a specific function.
  • StackOverflow: questions with the javauto tag
  • Syntax highlighting and auto completion for Javauto files in Notepad++
  • If you're looking to report a bug, please use the issue tracker.
  • Twitter account

Projects Using Javauto

  • adbutil - A simple Javauto (cross platform) wrapper around Android Debug Bridge to enable multi device support.
  • ImperiusGeorge Client - A test automation library which drives off the UI of Android native applications.

License

Javauto is licensed under the terms of the Apache License, Version 2.0