I need to iteratively submit data to a page then re-visit the page:
from splinter import Browser
with Browser() as browser:
# Visit URL
url = "http://tefam.biochem.vt.edu/tefam/search_seq_form.php"
browser.visit(url)
Instead of repetitively revisiting, how do I simply go "back" to the previous page?
Using the Browser back() method:
This will back to the last visited URL in the history as described in the API documentation.