5
5
class Client (object ):
6
6
7
7
def __init__ (self , url ):
8
+ """
9
+ Initialises a new Client object
10
+ :Args:
11
+ - url: This is where the BrowserMob Proxy lives
12
+ """
8
13
self .host = url
9
14
h = Http ()
10
15
resp , content = h .request ('%s/proxy' % self .host , 'POST' , urlencode ('' ))
@@ -14,11 +19,21 @@ def __init__(self, url):
14
19
self .proxy = url_parts [0 ] + ":" + url_parts [1 ] + ":" + str (self .port )
15
20
16
21
def new_har (self , ref = None ):
22
+ """
23
+ This sets a new HAR to be recorded
24
+ :Args:
25
+ - ref: A reference for the HAR. Defaults to None
26
+ """
17
27
h = Http ()
18
28
resp , content = h .request ('%s/proxy/%s/har' % (self .host , self .port ),
19
29
'PUT' , ref or '' )
20
30
21
31
def new_page (self , ref ):
32
+ """
33
+ This sets a new page to be recorded
34
+ :Args:
35
+ - ref: A reference for the new page. Defaults to None
36
+ """
22
37
h = Http ()
23
38
resp , content = h .request ('%s/proxy/%s/har/pageRef' % (self .host , self .port ),
24
39
'PUT' , ref or '' )
@@ -27,23 +42,44 @@ def new_page(self, ref):
27
42
28
43
@property
29
44
def har (self ):
45
+ """
46
+ Gets the HAR that has been recorded
47
+ """
30
48
h = Http ()
31
49
resp , content = h .request ('%s/proxy/%s/har' % (self .host , self .port ),
32
50
'GET' )
33
51
return json .loads (content )
34
52
35
53
def selenium_proxy (self ):
54
+ """
55
+ Returns a Selenium WebDriver Proxy class with details of the HTTP Proxy
56
+ """
36
57
from selenium import webdriver
37
58
return webdriver .Proxy ({"httpProxy" :self .proxy })
38
59
39
60
def whitelist (self , regexp , status_code ):
61
+ """
62
+ Sets a list of URL patterns to whitelist
63
+ :Args:
64
+ - regex: a comma separated list of regular expressions
65
+ - status_code: the HTTP status code to return for URLs that do not match the whitelist
66
+
67
+ """
40
68
h = Http ()
41
69
resp , content = h .request ('%s/proxy/%s/whitelist' % (self .host , self .port ),
42
70
'PUT' , urlencode ({ 'regex' : regexp , 'status' : status_code
43
71
}))
44
72
45
73
46
74
def blacklist (self , regexp , status_code ):
75
+ """
76
+ Sets a list of URL patterns to blacklist
77
+ :Args:
78
+ - regex: a comma separated list of regular expressions
79
+ - status_code: the HTTP status code to return for URLs that do not match the blacklist
80
+
81
+ """
82
+
47
83
h = Http ()
48
84
resp , content = h .request ('%s/proxy/%s/blacklist' % (self .host , self .port ),
49
85
'PUT' , urlencode ({ 'regex' : regexp , 'status' : status_code
@@ -57,6 +93,14 @@ def blacklist(self, regexp, status_code):
57
93
58
94
59
95
def limits (self , options ):
96
+ """
97
+ Limit the bandwidth through the proxy.
98
+ :Args:
99
+ - options: A dictionary with all the details you want to set.
100
+ downstreamKbps - Sets the downstream kbps
101
+ upstreamKbps - Sets the upstream kbps
102
+ latency - Add the given latency to each HTTP request
103
+ """
60
104
params = {}
61
105
62
106
for (k , v ) in options .items ():
@@ -73,6 +117,9 @@ def limits(self, options):
73
117
'PUT' , urlencode (params ))
74
118
75
119
def close (self ):
120
+ """
121
+ shuts down the proxy and closes the port
122
+ """
76
123
h = Http ()
77
124
resp , content = h .request ('%s/proxy/%s' % (self .host , self .port ),
78
125
'DELETE' )
0 commit comments