Skip to content

Instantly share code, notes, and snippets.

@satyagraha
Created February 20, 2013 21:34

Revisions

  1. satyagraha created this gist Feb 20, 2013.
    15 changes: 15 additions & 0 deletions gistfile1.scala
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    package com.wierd

    import org.openqa.selenium.Dimension
    import org.scalatest.selenium.Firefox

    object FFTest extends Firefox {

    def main(args: Array[String]): Unit = {

    webDriver.manage.window.setSize(new Dimension(1200, 800))
    goTo("http://wierd.com")

    }

    }