isrpa 1.0.2__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
isrpa/utils.py
CHANGED
@@ -27,11 +27,16 @@ def getPath(user_name):
|
|
27
27
|
if response.status_code != 200:
|
28
28
|
return "failure"
|
29
29
|
port = response.json()
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
30
|
+
|
31
|
+
def get_ws_url():
|
32
|
+
url = f"http://localhost:{port}/json/version"
|
33
|
+
response = requests.get(url)
|
34
|
+
if response.status_code != 200:
|
35
|
+
return "failure"
|
36
|
+
return response.json().get('webSocketDebuggerUrl')
|
37
|
+
|
38
|
+
ws_url = get_ws_url()
|
39
|
+
return ws_url
|
35
40
|
|
36
41
|
|
37
42
|
def get_active_page(browser, user_name):
|
@@ -45,11 +50,17 @@ def get_active_page(browser, user_name):
|
|
45
50
|
if response.status_code != 200:
|
46
51
|
return "failure"
|
47
52
|
port = response.json()
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
+
|
54
|
+
def get_json():
|
55
|
+
url = f"http://localhost:{port}/json"
|
56
|
+
response = requests.get(url)
|
57
|
+
if response.status_code != 200:
|
58
|
+
return "failure"
|
59
|
+
return response.json()
|
60
|
+
|
61
|
+
data = get_json()
|
62
|
+
|
63
|
+
for t in data:
|
53
64
|
if t.get("type") == "page":
|
54
65
|
active_url = t.get("url")
|
55
66
|
for page in browser.contexts[0].pages:
|
@@ -5,8 +5,8 @@ isrpa/__init__.py,sha256=pG-YPVG0gJIJ6s4xcAz9S_CnUxpUcz33wl9eNUSgxGk,20
|
|
5
5
|
isrpa/credentials.py,sha256=5paT4rxtZIUPqADmi1bLkoSKEYoosgS7rIjrJsgMNIs,3350
|
6
6
|
isrpa/llm_chat.py,sha256=jTuK9wcm3X36V9lXuGuTCdNup_zi2NeG2GuYHzO7gm4,1541
|
7
7
|
isrpa/message.py,sha256=N0s6hMaC5S-Pi4EhwcSp-ngfBTBQyW6ymU9sI9dUSeE,11329
|
8
|
-
isrpa/utils.py,sha256=
|
9
|
-
isrpa-1.0.
|
10
|
-
isrpa-1.0.
|
11
|
-
isrpa-1.0.
|
12
|
-
isrpa-1.0.
|
8
|
+
isrpa/utils.py,sha256=N2reQBnyLAfnWzvtFrH0pybF7x6HvPvs3gsVVyqbLNA,3971
|
9
|
+
isrpa-1.0.3.dist-info/METADATA,sha256=bfZ55Csi8oRoVEQhlHO_cMFxpSc5vnfa2w-9NY6VV0Q,511
|
10
|
+
isrpa-1.0.3.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
11
|
+
isrpa-1.0.3.dist-info/top_level.txt,sha256=J5HJbtR2WAeKnW1rrpkiuapwnlswv3RgM-riyZD87o0,6
|
12
|
+
isrpa-1.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|