All Downloads are FREE. Search and download functionalities are using the official Maven repository.

im.yagni.driveby.browser.Browser.scala Maven / Gradle / Ivy

The newest version!
package im.yagni.driveby.browser

import im.yagni.driveby.By
import im.yagni.driveby.Condition
import java.io.File

trait Browser {
  def assert(condition: Condition, message: String = ""): Boolean
  def click(by: By)
  def close()
  def enter(by: By, value: String)
  def goto(url: String)
  def html: String
  def id: Long
  def refresh()
  def select(by: By, value: String)
  def screenshot(file: File)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy