• +43 660 1453541
  • contact@germaniumhq.com

GermaniumHQ.com is Up!




GermaniumHQ.com

Finally the site is now online.

If you want to jump into web based integration testing, then all you need installed is
python regardless of verson 2 or 3, and get Germanium:

1
pip install germanium

Writing a test becomes then as easy as:

1
2
3
4
5
6
7
8
9
10
from germanium.static import *
from time import sleep

open_browser("ff")
go_to("http://www.google.com")
type_keys("germanium pypy<enter>", Input("q"))
wait(Link("Python Package Index"))
click(Link("Python Package Index"))
sleep(5)
close_browser()

The full documentation is available under the API Documentation link.