isrpa 1.0.1__py3-none-any.whl → 1.0.2__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
@@ -34,6 +34,30 @@ def getPath(user_name):
34
34
  return response.json().get('webSocketDebuggerUrl')
35
35
 
36
36
 
37
+ def get_active_page(browser, user_name):
38
+ """
39
+ 获取当前激活page对象
40
+ """
41
+ url = f"{address}/client/getPath"
42
+ headers = {'Content-Type': 'application/json'}
43
+ data = {'user_name': user_name}
44
+ response = requests.post(url, headers=headers, json=data)
45
+ if response.status_code != 200:
46
+ return "failure"
47
+ port = response.json()
48
+ url = f"http://localhost:{port}/json"
49
+ response = requests.get(url)
50
+ if response.status_code != 200:
51
+ return "failure"
52
+ for t in response.json():
53
+ if t.get("type") == "page":
54
+ active_url = t.get("url")
55
+ for page in browser.contexts[0].pages:
56
+ if page.url == active_url:
57
+ page.bring_to_front()
58
+ return page
59
+
60
+
37
61
  def upload_file(file_path, dest_file, user_name):
38
62
  """
39
63
  通知客户端上传文件
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: isrpa
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: isrpa package
5
5
  Home-page: https://github.com/yourusername/mypackage
6
6
  Author: ysq
@@ -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=fFIajqH_JN_-hYXx4j_CbGqqlMTGHeUYt14qypfTYJc,2992
9
- isrpa-1.0.1.dist-info/METADATA,sha256=KignPuMVFcZYUi6sqxvriMMI6hE9MZ0HAov0E_OXiOI,511
10
- isrpa-1.0.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
11
- isrpa-1.0.1.dist-info/top_level.txt,sha256=J5HJbtR2WAeKnW1rrpkiuapwnlswv3RgM-riyZD87o0,6
12
- isrpa-1.0.1.dist-info/RECORD,,
8
+ isrpa/utils.py,sha256=eUgdX1g6zt36zu05oXo2jwyT77n_rXn-gnyR8pwZLOE,3791
9
+ isrpa-1.0.2.dist-info/METADATA,sha256=IPFbiotwSPElQviy5CpyuAeO88BEuZz95FmsAHLbkIo,511
10
+ isrpa-1.0.2.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
11
+ isrpa-1.0.2.dist-info/top_level.txt,sha256=J5HJbtR2WAeKnW1rrpkiuapwnlswv3RgM-riyZD87o0,6
12
+ isrpa-1.0.2.dist-info/RECORD,,
File without changes