aboutsummaryrefslogtreecommitdiff
path: root/webtests/marker_regression_test.py
diff options
context:
space:
mode:
authorArthur Centeno2021-10-25 21:04:23 +0000
committerArthur Centeno2021-10-25 21:04:23 +0000
commit499a80f138030c4de1629c043c8f9401a99894ea (patch)
tree449dcae965d13f966fb6d52625fbc86661c8c6a0 /webtests/marker_regression_test.py
parent6151faa9ea67af4bf4ea95fb681a9dc4319474b6 (diff)
parent700802303e5e8221a9d591ba985d6607aa61e1ce (diff)
downloadgenenetwork2-499a80f138030c4de1629c043c8f9401a99894ea.tar.gz
Merge github.com:genenetwork/genenetwork2 into acenteno
Diffstat (limited to 'webtests/marker_regression_test.py')
-rw-r--r--webtests/marker_regression_test.py55
1 files changed, 0 insertions, 55 deletions
diff --git a/webtests/marker_regression_test.py b/webtests/marker_regression_test.py
deleted file mode 100644
index c4f76f53..00000000
--- a/webtests/marker_regression_test.py
+++ /dev/null
@@ -1,55 +0,0 @@
-"""
-Test calculate correlations
-
->>> test.get("http://genenetwork.org")
-title: GeneNetwork
-
-Choose the type
->>> test.click_option('''//*[@id="tissue"]''', 'Liver mRNA')
-
-Enter the Get Any
->>> test.enter_text('''//*[@id="tfor"]''', 'grin2b')
-text: grin2b
-
-Search
->>> test.click('//*[@id="btsearch"]')
-clicked: Search
-
-Choose the second result
->>> 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[2]/a''')
-clicked: 1431700_at_A
-
-A new window is created, so we switch to it
->>> test.switch_window()
-title: GSE16780 UCLA Hybrid MDP Liver Affy HT M430A (Sep11) RMA : 1431700_at_A: Display Trait
-
-Click on Mapping Tools
->>> test.click('''//*[@id="title4"]''')
-clicked: Mapping Tools
-
-Click on Marker Regression tab
->>> test.click('''//*[@id="mapping_tabs"]/ul/li[2]/a''')
-clicked: Marker Regression
-
-Click on Compute
->>> test.click('''//*[@id="mappingtabs-2"]/span/table/tbody/tr[1]/td/input''')
-clicked: Compute
-
-Another new window
->>> test.switch_window()
-title: Genome Association Result
-
-Sleep a bunch because this can take a while
->>> sleep(60)
-
-Ensure that the LRS of the top record is the exepcted value
->>> test.get_text('''//*[@id="1"]/td[2]''')
-text: 11.511
-
-"""
-
-from __future__ import absolute_import, division, print_function
-
-from browser_run import *
-
-testmod()