예제 #1
0
def test_webbrowser(url):

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

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