diff options
author | Zachary Sloan | 2013-08-16 18:06:24 -0500 |
---|---|---|
committer | Zachary Sloan | 2013-08-16 18:06:24 -0500 |
commit | b9ccccf8d1cf47c33afbbb0c05d56d7a0f5039e3 (patch) | |
tree | 3e0773ff34b2020d6c121024f5ca083072e4fe0c /webtests/correlation_matrix_test.py | |
parent | 99a0faffb1a42a379b72a4572088c1ad588fca3e (diff) | |
download | genenetwork2-b9ccccf8d1cf47c33afbbb0c05d56d7a0f5039e3.tar.gz |
Created a file (test_runner.py) that runs every test in the
directory in a row and reports the results
Diffstat (limited to 'webtests/correlation_matrix_test.py')
-rw-r--r-- | webtests/correlation_matrix_test.py | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/webtests/correlation_matrix_test.py b/webtests/correlation_matrix_test.py index 4047de84..8529c265 100644 --- a/webtests/correlation_matrix_test.py +++ b/webtests/correlation_matrix_test.py @@ -2,7 +2,6 @@ Test Correlation matrix ->>> test = Test() >>> test.get("http://genenetwork.org/") title: GeneNetwork @@ -15,17 +14,29 @@ text: grin2b Search >>> test.click('//*[@id="btsearch"]') +clicked: Search -Select the first 4 records +Add 1430675_at >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/p/table/tbody/tr[3]/td/div/table/tbody/tr[2]/td/input''') +clicked: HC_M2_0606_P::1430675_at + +Add 1442370_at >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/p/table/tbody/tr[3]/td/div/table/tbody/tr[3]/td/input''') +clicked: HC_M2_0606_P::1442370_at + +Add 1457003_at >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/p/table/tbody/tr[3]/td/div/table/tbody/tr[4]/td/input''') +clicked: HC_M2_0606_P::1457003_at + +Add 1422223_at >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/p/table/tbody/tr[3]/td/div/table/tbody/tr[5]/td/input''') +clicked: HC_M2_0606_P::1422223_at >>> sleep(5) Add to collection page >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/p/table/tbody/tr[1]/td/table/tbody/tr[1]/td[4]/a''') +clicked: Notext >>> sleep(5) @@ -35,10 +46,11 @@ title: BXD Trait Collection Select all records >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/table/tbody/tr/td/table/tbody/tr/td/table/tbody/tr/td/a/img''') - +clicked: Notext Click Matrix >>> test.click('''/html/body/table/tbody/tr[3]/td/table/tbody/tr/td/form/table/tbody/tr/td/table/tbody/tr[2]/td/table/tbody/tr/td[2]/a/img''') +clicked: Notext Another new window >>> test.switch_window() @@ -53,10 +65,8 @@ text: 0.608\n71 """ -from __future__ import print_function, division, absolute_import +from __future__ import absolute_import, division, print_function -from browser_test import Test +from browser_run import * -if __name__ == '__main__': - import doctest - doctest.testmod() +testmod() |