Ejemplo n.º 1
0
def test_webbrowser(url):

    browser = WebBrowser(debug=False)
    html = browser._request(url)
    print type(html)
    print html[:200]
Ejemplo n.º 2
0
def test_cookie(url,cookies):
    browser = WebBrowser()
    html = browser._request(url,cookies=cookies)
    print type(html)
    print html[:200]
Ejemplo n.º 3
0
def test_cookie(url, cookies):
    browser = WebBrowser()
    html = browser._request(url, cookies=cookies)
    print type(html)
    print html[:200]
Ejemplo n.º 4
0
def test_webbrowser(url):

    browser = WebBrowser(debug=False)
    html = browser._request(url)
    print type(html)
    print html[:200]