I'm trying to update the page http://stitch.embl.de//cgi/download.pl?UserId=FCCY8Z7drB9z&sessionId=QFV3kq1R2gdD via Python-Selenium (emulating action of clicking on Choose an organism -> Homo sapiens
, then click on Update
)
How do I execute the script?
<div style="height:3em;vertical-align:top;"><div id="organism_text_input"><script type="text/javascript"> function toggleSpeciesFloatingDiv () { if(document.getElementById('speciesFloatingDiv').style.visibility != "visible") { initiateDropDownSpeciesList(); document.getElementById('speciesFloatingDiv').style.display = "block"; document.getElementById('speciesFloatingDiv').style.visibility = "visible"; document.getElementById('speciesList').focus(); } else { document.getElementById('speciesFloatingDiv').style.display = "none"; document.getElementById('speciesFloatingDiv').style.visibility = "hidden"; } } </script>