Quote:
Originally Posted by Stomking
can someone point me into the right direction?
|
It looks like you want to click on a link on a page. Typically that's done by setting up a browser (br), opening the page (url), finding the link on that page with a regex (url_regex) and using follow_link:
Code:
br = self.get_browser()
br.open(url)
response = br.follow_link(url_regex='some_regex)', nr = 0)