osn-selenium 1.0.0__py3-none-any.whl → 1.1.0__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.
Files changed (108) hide show
  1. osn_selenium/_base_models.py +41 -0
  2. osn_selenium/_cdp_import.py +253 -0
  3. osn_selenium/abstract/executors/cdp.py +63 -0
  4. osn_selenium/browsers_handler/models.py +1 -1
  5. osn_selenium/dev_tools/_decorators.py +19 -10
  6. osn_selenium/dev_tools/_typehints.py +5 -2
  7. osn_selenium/dev_tools/_wrappers.py +0 -3
  8. osn_selenium/dev_tools/domains/__init__.py +2 -2
  9. osn_selenium/dev_tools/domains/abstract.py +1 -1
  10. osn_selenium/dev_tools/domains/fetch.py +1 -1
  11. osn_selenium/dev_tools/domains_default/fetch.py +1 -1
  12. osn_selenium/dev_tools/filters.py +1 -1
  13. osn_selenium/dev_tools/logger/main.py +0 -12
  14. osn_selenium/dev_tools/logger/models.py +1 -1
  15. osn_selenium/dev_tools/logger/target.py +42 -22
  16. osn_selenium/dev_tools/manager/base.py +0 -23
  17. osn_selenium/dev_tools/manager/lifecycle.py +1 -1
  18. osn_selenium/dev_tools/models.py +1 -1
  19. osn_selenium/dev_tools/settings.py +5 -1
  20. osn_selenium/dev_tools/target/base.py +12 -23
  21. osn_selenium/dev_tools/target/lifecycle.py +6 -1
  22. osn_selenium/dev_tools/target/logging.py +10 -2
  23. osn_selenium/exceptions/dependencies.py +60 -0
  24. osn_selenium/executors/sync/cdp.py +100 -0
  25. osn_selenium/executors/trio_threads/cdp.py +104 -0
  26. osn_selenium/executors/trio_threads/javascript.py +1 -1
  27. osn_selenium/executors/unified/javascript.py +0 -4
  28. osn_selenium/flags/base.py +1 -9
  29. osn_selenium/flags/blink.py +0 -6
  30. osn_selenium/flags/models/base.py +4 -4
  31. osn_selenium/flags/models/blink.py +1 -1
  32. osn_selenium/flags/models/values.py +1 -1
  33. osn_selenium/instances/sync/action_chains/__init__.py +6 -0
  34. osn_selenium/instances/sync/shadow_root.py +30 -8
  35. osn_selenium/instances/trio_threads/action_chains/__init__.py +6 -0
  36. osn_selenium/instances/trio_threads/action_chains/base.py +1 -1
  37. osn_selenium/instances/trio_threads/alert.py +1 -1
  38. osn_selenium/instances/trio_threads/browser.py +1 -1
  39. osn_selenium/instances/trio_threads/browsing_context.py +1 -1
  40. osn_selenium/instances/trio_threads/dialog.py +1 -1
  41. osn_selenium/instances/trio_threads/fedcm.py +1 -1
  42. osn_selenium/instances/trio_threads/mobile.py +1 -1
  43. osn_selenium/instances/trio_threads/network.py +1 -1
  44. osn_selenium/instances/trio_threads/permissions.py +1 -1
  45. osn_selenium/instances/trio_threads/script.py +1 -1
  46. osn_selenium/instances/trio_threads/shadow_root.py +46 -15
  47. osn_selenium/instances/trio_threads/storage.py +1 -1
  48. osn_selenium/instances/trio_threads/switch_to.py +1 -1
  49. osn_selenium/instances/trio_threads/web_driver_wait.py +1 -1
  50. osn_selenium/instances/trio_threads/web_element.py +1 -1
  51. osn_selenium/instances/trio_threads/web_extension.py +1 -1
  52. osn_selenium/javascript/fingerprint/__init__.py +1 -1
  53. osn_selenium/javascript/fingerprint/registry/models.py +1 -1
  54. osn_selenium/javascript/fingerprint/spoof/core_rules.py +1 -1
  55. osn_selenium/javascript/fingerprint/spoof/noise.py +1 -1
  56. osn_selenium/javascript/models.py +1 -1
  57. osn_selenium/models.py +2 -47
  58. osn_selenium/trio_threads_mixin.py +159 -0
  59. osn_selenium/webdrivers/_args_helpers.py +2 -2
  60. osn_selenium/webdrivers/_bridges.py +2 -2
  61. osn_selenium/webdrivers/_executable_tables/models.py +1 -1
  62. osn_selenium/webdrivers/sync/blink/__init__.py +11 -1
  63. osn_selenium/webdrivers/sync/blink/base.py +13 -1
  64. osn_selenium/webdrivers/sync/chrome/__init__.py +36 -1
  65. osn_selenium/webdrivers/sync/chrome/base.py +13 -1
  66. osn_selenium/webdrivers/sync/core/__init__.py +10 -1
  67. osn_selenium/webdrivers/sync/core/base.py +16 -8
  68. osn_selenium/webdrivers/sync/edge/__init__.py +36 -1
  69. osn_selenium/webdrivers/sync/edge/base.py +13 -1
  70. osn_selenium/webdrivers/sync/yandex/__init__.py +36 -1
  71. osn_selenium/webdrivers/sync/yandex/base.py +13 -1
  72. osn_selenium/webdrivers/trio_threads/blink/__init__.py +11 -1
  73. osn_selenium/webdrivers/trio_threads/blink/base.py +11 -1
  74. osn_selenium/webdrivers/trio_threads/blink/casting.py +1 -1
  75. osn_selenium/webdrivers/trio_threads/blink/features.py +1 -1
  76. osn_selenium/webdrivers/trio_threads/blink/logging.py +1 -1
  77. osn_selenium/webdrivers/trio_threads/blink/network.py +1 -1
  78. osn_selenium/webdrivers/trio_threads/chrome/__init__.py +34 -1
  79. osn_selenium/webdrivers/trio_threads/chrome/base.py +14 -2
  80. osn_selenium/webdrivers/trio_threads/core/__init__.py +10 -4
  81. osn_selenium/webdrivers/trio_threads/core/actions.py +1 -1
  82. osn_selenium/webdrivers/trio_threads/core/auth.py +1 -1
  83. osn_selenium/webdrivers/trio_threads/core/base.py +15 -7
  84. osn_selenium/webdrivers/trio_threads/core/capture.py +1 -1
  85. osn_selenium/webdrivers/trio_threads/core/comonents.py +1 -1
  86. osn_selenium/webdrivers/trio_threads/core/devtools.py +1 -1
  87. osn_selenium/webdrivers/trio_threads/core/element.py +1 -1
  88. osn_selenium/webdrivers/trio_threads/core/file.py +2 -2
  89. osn_selenium/webdrivers/trio_threads/core/lifecycle.py +1 -1
  90. osn_selenium/webdrivers/trio_threads/core/navigation.py +1 -1
  91. osn_selenium/webdrivers/trio_threads/core/script.py +1 -1
  92. osn_selenium/webdrivers/trio_threads/core/settings.py +1 -1
  93. osn_selenium/webdrivers/trio_threads/core/storage.py +1 -1
  94. osn_selenium/webdrivers/trio_threads/core/timeouts.py +1 -1
  95. osn_selenium/webdrivers/trio_threads/core/window.py +3 -3
  96. osn_selenium/webdrivers/trio_threads/edge/__init__.py +34 -1
  97. osn_selenium/webdrivers/trio_threads/edge/base.py +14 -2
  98. osn_selenium/webdrivers/trio_threads/yandex/__init__.py +34 -1
  99. osn_selenium/webdrivers/trio_threads/yandex/base.py +14 -2
  100. osn_selenium/webdrivers/unified/blink/base.py +5 -1
  101. osn_selenium/webdrivers/unified/chrome/base.py +5 -1
  102. osn_selenium/webdrivers/unified/core/base.py +9 -2
  103. osn_selenium/webdrivers/unified/edge/base.py +5 -1
  104. osn_selenium/webdrivers/unified/yandex/base.py +5 -1
  105. {osn_selenium-1.0.0.dist-info → osn_selenium-1.1.0.dist-info}/METADATA +22 -9
  106. {osn_selenium-1.0.0.dist-info → osn_selenium-1.1.0.dist-info}/RECORD +108 -101
  107. {osn_selenium-1.0.0.dist-info → osn_selenium-1.1.0.dist-info}/WHEEL +1 -1
  108. {osn_selenium-1.0.0.dist-info → osn_selenium-1.1.0.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,14 @@
1
1
  osn_selenium/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
2
+ osn_selenium/_base_models.py,sha256=AahZgCEUreSYufpLHOciDHW3p_qODTjm7CKW_3rt3q4,867
3
+ osn_selenium/_cdp_import.py,sha256=beX_ld2hKuevKWtLobMJPqAhNivfwoHrErIPiSj5vxU,7042
2
4
  osn_selenium/_functions.py,sha256=IPq2muTfUP-TeK2Xwy0AjGgof4wKLIzWeouEQyqpG24,1983
3
5
  osn_selenium/_typehints.py,sha256=TUvaagov9fBd-aZfbdHH9gWlFe0pIxK_OUJFtoej8CI,616
4
6
  osn_selenium/base_mixin.py,sha256=EYZSuMutLX8XIaAvUSSwyaoA-1OGXnVYNPqx50wycnM,3571
5
- osn_selenium/models.py,sha256=slJrwZPhPCbG9_a4zk3NjaC255FMhz0TnT8e4cFpAsU,2749
7
+ osn_selenium/models.py,sha256=RRfrK_dOKkLezsE74dgYrriXDy2L9RfqWPzDFQt7rbA,1934
8
+ osn_selenium/trio_threads_mixin.py,sha256=d_tnpKBV_8MuSrCRHKtoP0oVSs08bZWJf4dTM5LsVM4,4561
6
9
  osn_selenium/abstract/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
10
  osn_selenium/abstract/executors/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
11
+ osn_selenium/abstract/executors/cdp.py,sha256=Jq_At-LalG6O30Mde2FBIkagD_bI4plh8HJNE3eJ91s,1266
8
12
  osn_selenium/abstract/executors/javascript.py,sha256=312SafeMC0G1-03-sYHq7IGnTQXgyo4veJsBotnVw6Y,4604
9
13
  osn_selenium/abstract/executors/cdp/__init__.py,sha256=CVYYsUUB2OOttG9EqKkBx73IJ-GEJWtrLkYUeCNc17g,9863
10
14
  osn_selenium/abstract/executors/cdp/accessibility.py,sha256=0iqASYSG1iCzch0ektyNNEWRU0MoFq-3Vdu703cOeic,1366
@@ -127,44 +131,45 @@ osn_selenium/abstract/webdriver/yandex/settings.py,sha256=s__TUNHHuU9EynrbsI5hkx
127
131
  osn_selenium/browsers_handler/__init__.py,sha256=wHCMMn8X7Jzd0pTVmDTZAGjoRKo4aGVBybOhu3r42DU,3038
128
132
  osn_selenium/browsers_handler/_linux.py,sha256=Z5AUINs3SzxwKiHs4fy7QTVioeKlz_fS752FkgEbkPw,5328
129
133
  osn_selenium/browsers_handler/_windows.py,sha256=iSHL22BDQE4VHlwCfuKeV3Vtap6VQf9Cbl1efZEd4wQ,3801
130
- osn_selenium/browsers_handler/models.py,sha256=iVrYEgkm9MgCl-XQG8iLQl2eWMT5BZ7omk9f23_6C6c,636
134
+ osn_selenium/browsers_handler/models.py,sha256=B0yh_h4qgi3uoLywQgtox8aKFVzjVSufSiu6fUAn1Oc,642
131
135
  osn_selenium/dev_tools/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
132
- osn_selenium/dev_tools/_decorators.py,sha256=NB8zmL_49sU8hT9fr7FLxCjlY4oZw0rbtt1mwqMj1Sw,4393
136
+ osn_selenium/dev_tools/_decorators.py,sha256=L9lzw8dhdRrCMMeRr1I_ksE-dhsBAYc4ysTYq75VVuY,4637
133
137
  osn_selenium/dev_tools/_exception_helpers.py,sha256=AYyRnj7ySlIkahSAzQKAExoKWreU0rj3936Bw4niyp4,3256
134
138
  osn_selenium/dev_tools/_functions.py,sha256=PqEHv7NvAOMicZVXbyRkJIPjjx9HRy-zxW9bNWCsaoY,5434
135
139
  osn_selenium/dev_tools/_system_utils.py,sha256=h4s0jGCHKhqLTG3gbCtqitoIXbNgIv2sRMoyDerDiQU,1207
136
- osn_selenium/dev_tools/_typehints.py,sha256=f1gOtqpxe8ehl0vZdRCwhh_-NNMfEgf7RAsETviRRiE,604
140
+ osn_selenium/dev_tools/_typehints.py,sha256=Q3D4ZPns0qgej9CeXhqAD6tzopPE2RF3wCGuzrkXQBs,715
137
141
  osn_selenium/dev_tools/_validators.py,sha256=5-Yil_-9BtP3-Dcrq05eaPYn0aMVWoCiwjusBj8hXlE,6509
138
- osn_selenium/dev_tools/_wrappers.py,sha256=WMrErFyi8iUcsKlK4E_U2p665a0EOEZi-hBMM-3t4Yw,2421
139
- osn_selenium/dev_tools/filters.py,sha256=wAv3siEjKxlnoPXPO676HJnvHZIFnl1orBoGYlwdYUs,1244
140
- osn_selenium/dev_tools/models.py,sha256=jG-sb-achVlXSFUhSSMJTOyo2CLN14JGlDY7-I11kmA,1615
141
- osn_selenium/dev_tools/settings.py,sha256=DhDk4L5ryS5BU8PEnMkdjyyaRlYEPbbBVEY4Vl9A4tw,5560
142
- osn_selenium/dev_tools/domains/__init__.py,sha256=L2kdjRWCm7q_zDqEc-ru_nDiFD5cm9Sp4SBkhFrCWf4,840
143
- osn_selenium/dev_tools/domains/abstract.py,sha256=xJBtGM4Nk_bMRXNNsP8_espBwVXBC_cp_oIMiTF4hwA,7639
144
- osn_selenium/dev_tools/domains/fetch.py,sha256=G6_mMibC1Iwa71dTurtwKalE8Ce9tteUR-kcSB049wk,26294
142
+ osn_selenium/dev_tools/_wrappers.py,sha256=_lsLbNXzRavTMhc6vqUtDL-2F5FSw_JSiEefDMPKEMM,2348
143
+ osn_selenium/dev_tools/filters.py,sha256=kR_ijuX3_dP5A-t4rjeiy5ahAVewJh31EfoHO8_JxhE,1250
144
+ osn_selenium/dev_tools/models.py,sha256=HDJxLvNRzR0l9HxBmMOuR77_s1wiiJdi0rKI8zonYbA,1621
145
+ osn_selenium/dev_tools/settings.py,sha256=lx9yOI2pN2bULoQJEBBGxtvWIK_RG0xc_X-gljt1LCU,5774
146
+ osn_selenium/dev_tools/domains/__init__.py,sha256=wj0EfmSlYMPKO6Xy_nMBH_DKgcbVWRRKI0vmdnXEO30,856
147
+ osn_selenium/dev_tools/domains/abstract.py,sha256=lt4ehgx0IEJ3oHE_5oqcgBzpl5OVolbyDuQvDzGhAzg,7645
148
+ osn_selenium/dev_tools/domains/fetch.py,sha256=Txx4Vf8sfklJ1GIdQGTXDTLyM8KHGJ2hkBltFM6JkDg,26300
145
149
  osn_selenium/dev_tools/domains_default/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
146
- osn_selenium/dev_tools/domains_default/fetch.py,sha256=YaQuocB1L6xm1lfv7GZ0rpTDa1efswdPceiOV2nSiDY,5377
150
+ osn_selenium/dev_tools/domains_default/fetch.py,sha256=bhbm2HjBYy6mX8jYy93fi6hlH0oWULo3HtluEwFVhT0,5383
147
151
  osn_selenium/dev_tools/logger/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
148
- osn_selenium/dev_tools/logger/main.py,sha256=VaNllPWftfDU__CaBHqXQA0mF05PEDb7xHkbZxh12Rs,7906
149
- osn_selenium/dev_tools/logger/models.py,sha256=-FBdIDVTGLpvc76X05Pb4Y72hVnj9W5WYxqDH3r6CBM,6816
150
- osn_selenium/dev_tools/logger/target.py,sha256=Ih08IVYUnTIoBf3wcUC9bOZ43Tmow7orkukXz3tEODA,9077
152
+ osn_selenium/dev_tools/logger/main.py,sha256=x_VHQMaZLMXEeXYEOqaUN3MI1GlVeH6d77tvkTJJpdA,7085
153
+ osn_selenium/dev_tools/logger/models.py,sha256=qYVF6_6m1BNVLoXEODNJieKnmV96h9aZM6vuQ1KyPro,6822
154
+ osn_selenium/dev_tools/logger/target.py,sha256=4tj0DbwUO-bBojL-Fy3aDMDSVxgP3WKVWpMGj4ubfgg,9234
151
155
  osn_selenium/dev_tools/manager/__init__.py,sha256=1wbLIRPH80zY9omlHgK_2uHdaQR2hVbZ-eGTrIom80o,470
152
- osn_selenium/dev_tools/manager/base.py,sha256=rcPQXLMUc_XzK_BPS_OirYy2s8fx9_B7TR-3IDQMQCI,6787
153
- osn_selenium/dev_tools/manager/lifecycle.py,sha256=To396pKG4As4INvBq4Wmp0RjyrOspsa-Kv6VXl0Dw2w,7625
156
+ osn_selenium/dev_tools/manager/base.py,sha256=LbbPXmh4TsYFutS3V08vYrzwZ_yo85PNSOqMZkkIcHU,4506
157
+ osn_selenium/dev_tools/manager/lifecycle.py,sha256=ClOuqifIQMWVeou_UWiuH_jqrHGCgYJFKgQlIqyfa1c,7626
154
158
  osn_selenium/dev_tools/manager/logging.py,sha256=tg24gxHuvXrVSOB7agVlYxLAHF157SzqoUqtYK1T0Ug,5108
155
159
  osn_selenium/dev_tools/manager/settings.py,sha256=803TGDHTscp2Uw77OLp6nElKE4e9So02p54-YbzQ9Ns,3020
156
160
  osn_selenium/dev_tools/manager/targets.py,sha256=yBVg1XfSrmojoCmiqYYEHBPuM6oI4CU9vEyZgKCWkY0,6075
157
161
  osn_selenium/dev_tools/target/__init__.py,sha256=Cr8Iiz2FyWKzFxaG5YHZezob55NHIlFZOK5_wq2Du0o,445
158
- osn_selenium/dev_tools/target/base.py,sha256=PATMaOiFIVy5CDjkHcaCRFx35vl0R24el0y-Wb2QlOY,13577
162
+ osn_selenium/dev_tools/target/base.py,sha256=-6lUCeNBG28APNSux1IAds78wud6wm1BN_0aRhHz-fQ,11958
159
163
  osn_selenium/dev_tools/target/detach.py,sha256=XSKF9FnCyaD_DFbv21TG49mkTtDKeNzc3wPO-YzfBvk,1646
160
164
  osn_selenium/dev_tools/target/discovery.py,sha256=UPY80WFX_lwR5mmXbk45653Y2AduDJqp4f8iU-NGErE,3467
161
165
  osn_selenium/dev_tools/target/events.py,sha256=qZhfU0Ghs1aL6q_A9cmbNJdKgE8A-sQZ7Sr-MZ-RTaY,3734
162
166
  osn_selenium/dev_tools/target/fingerprint.py,sha256=Qsi5IK2RjzS2H-ZEav2A3rqjmQOMbNcPTjqV6X5P79o,3782
163
- osn_selenium/dev_tools/target/lifecycle.py,sha256=y967fAY15CHw27dSWWpfPXoa73Y5OONdGj_ooovd-sE,6041
164
- osn_selenium/dev_tools/target/logging.py,sha256=EPXjdu7XHOvToqucbuzpHpVyWtp9DoyBGf_DNDDWZPY,4539
167
+ osn_selenium/dev_tools/target/lifecycle.py,sha256=lckiCwJTeK3rPgT_AK0HpiMaOwLGRUdrupdGFW0NByo,6159
168
+ osn_selenium/dev_tools/target/logging.py,sha256=f7_X3KiyiNEPgguoF5Lz3Nch3rmdRk-weQ2dTGd5r4k,4927
165
169
  osn_selenium/exceptions/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
166
170
  osn_selenium/exceptions/base.py,sha256=NBst_MEZ_N7rd_dCmvEih9JUJfmHX-ZOdBaskEbCmMA,152
167
171
  osn_selenium/exceptions/configuration.py,sha256=BQzHxkVvLXjfZka7NIXa1_4H3JaNwN2vh8ymT6w3mzg,2261
172
+ osn_selenium/exceptions/dependencies.py,sha256=cb6Df28W3v-3d-uRaNrpygK2SkQD2ObS3QVmO_DeTvc,1615
168
173
  osn_selenium/exceptions/devtools.py,sha256=QqVQIvZ2vaqqB6XVguZFQqn-qyvomct7qad9AxrOMKo,2953
169
174
  osn_selenium/exceptions/flags.py,sha256=bkswI71IrK65qJ07owj5bDnWAySHZWE7jEX7BYasN2M,1074
170
175
  osn_selenium/exceptions/instance.py,sha256=d9VfHbo6TO2dQ01WiDGDXfHlEQFj5jYKAhBHeiCvxTQ,2073
@@ -177,6 +182,7 @@ osn_selenium/exceptions/webdriver.py,sha256=FuJ9v2FMcfHFVnDNQlxLaDJnGhfctU6G1gzJ
177
182
  osn_selenium/exceptions/window.py,sha256=sMqwaZVnnoFaQYz0P8F3dbzzBXe_91DHlp5mlIFLj_0,1415
178
183
  osn_selenium/executors/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
179
184
  osn_selenium/executors/sync/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
+ osn_selenium/executors/sync/cdp.py,sha256=Oam12QBXi9NX6IxKZkQKtsDcvFmbrpK0ZdJaL9RyTpM,2776
180
186
  osn_selenium/executors/sync/javascript.py,sha256=e4efASYCRZBjqsc9hMycS8kzoaTNi0yBP7xgMG_sdVI,2584
181
187
  osn_selenium/executors/sync/cdp/__init__.py,sha256=QBAZJFuIRAYa17COW5taaJJzeOjI_YvTTtCjHs28Ewc,20673
182
188
  osn_selenium/executors/sync/cdp/accessibility.py,sha256=vUQh1ntwU3JZEPvwatVTOfR99pK70cBBdaci4BErLG4,2269
@@ -233,7 +239,8 @@ osn_selenium/executors/sync/cdp/tracing.py,sha256=tmi_OSbZJiB0csy2_quFOLMr87KX4D
233
239
  osn_selenium/executors/sync/cdp/web_audio.py,sha256=bb7327cG9yQycKyDdgLeqqAETHsDI_rC9ojrXgjuyfw,743
234
240
  osn_selenium/executors/sync/cdp/web_authn.py,sha256=TdSxRK4XFU6zMObOxNRKpoM-0nXk_oaz_S1Q5ZWyex0,2989
235
241
  osn_selenium/executors/trio_threads/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
236
- osn_selenium/executors/trio_threads/javascript.py,sha256=O6OA1AF7jx0-EAPUFnivbVfWUsqiD6hjZ0Bip7NvB-Q,3554
242
+ osn_selenium/executors/trio_threads/cdp.py,sha256=hjj5tPXyyu3e7a8XhlCd-c_5ifuJxfwlzF-h2EaU4RU,2971
243
+ osn_selenium/executors/trio_threads/javascript.py,sha256=ec9_YtzC6GrLO8RORn0mLB07ROfvTWB7FNJK8PpQ140,3562
237
244
  osn_selenium/executors/trio_threads/cdp/__init__.py,sha256=0GLHoQakr0ssg6BFl1XDkKT6e3l0JuMHAXbyxjrUXsc,25386
238
245
  osn_selenium/executors/trio_threads/cdp/accessibility.py,sha256=w8gwCN_jfX8V6fIZNaDgaPaFV-rEquQJUkQjtmP595k,2845
239
246
  osn_selenium/executors/trio_threads/cdp/animation.py,sha256=imxM6DiKGsThbcG-oOkdcViAZzy0ooTj5PRkyIj96ew,2348
@@ -289,7 +296,7 @@ osn_selenium/executors/trio_threads/cdp/tracing.py,sha256=24rXri0JwRQRXuUfpMYijS
289
296
  osn_selenium/executors/trio_threads/cdp/web_audio.py,sha256=QD-RQ7f6_skab0kZllQDkTxiWNhH2PCrNa3Q51saLlg,1094
290
297
  osn_selenium/executors/trio_threads/cdp/web_authn.py,sha256=CbwL7vmro6bpCsPPs4tYy9RGCJZAiTE8q0dj6lepIOg,3790
291
298
  osn_selenium/executors/unified/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
292
- osn_selenium/executors/unified/javascript.py,sha256=iPNBWbk77PkuGLQoYTqIeMIMljZzU9hG8vjuQJCVDLU,3468
299
+ osn_selenium/executors/unified/javascript.py,sha256=nMtwRYgDHNAkA1QmxQOha6guAfSr6XYumirSWbZgTtg,3285
293
300
  osn_selenium/executors/unified/cdp/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
294
301
  osn_selenium/executors/unified/cdp/accessibility.py,sha256=krCMegEE4-FcStEbL1VX-ShBnoBD2u_serqAO950HnI,2377
295
302
  osn_selenium/executors/unified/cdp/animation.py,sha256=mmtpvdb_1pMsk1eWRZxfPPid9mXHh4hf7bECCVucjXI,1795
@@ -348,17 +355,17 @@ osn_selenium/flags/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVG
348
355
  osn_selenium/flags/_functions.py,sha256=2may8ThhizXmo8ORHjiKbmNMXXQHmMuE9AsBwXBQZgw,1168
349
356
  osn_selenium/flags/_typehints.py,sha256=mbU-sC1QCWh0mqs2uER3otrxEhiWteB5Axkry_IHGYU,902
350
357
  osn_selenium/flags/_validators.py,sha256=k-BfiKprdzVo9OmAV_UacKd-lu-TuQwctsGBgA-9t7E,2327
351
- osn_selenium/flags/base.py,sha256=BbfGXDPGPTD1J91jmiJqb4ngfqT-7GRu3COhGS_aVSU,19578
352
- osn_selenium/flags/blink.py,sha256=5uMMXZ2LjNbFVuIK9EG3x_u_UHLO-lVZ58cXdGdKGKw,35494
358
+ osn_selenium/flags/base.py,sha256=2oap5ulnex_ifsvYCr-29wDGqUVIyUWeZrsEj3QjIq4,18989
359
+ osn_selenium/flags/blink.py,sha256=SI3xvjEHGKjQa47qjCHZR-Oz-3OXTbDVWwqHSk7piXo,35164
353
360
  osn_selenium/flags/chrome.py,sha256=p-rpL3aCJzeN26tynxLqULTbIPykIQtux5U5-AVjdtI,7309
354
361
  osn_selenium/flags/edge.py,sha256=yb7R5m6hbCCh03mxlA91poVt4ob38roURjTSHorEiaM,7229
355
362
  osn_selenium/flags/yandex.py,sha256=zKcvo9TEMLxmjYwroSygu_5tdM1twnQ7ARw9Mz3yS1s,7312
356
363
  osn_selenium/flags/models/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
357
- osn_selenium/flags/models/base.py,sha256=mcr6O-_Yla81_YSMJew-clM5Rcd5UfyCIRjI5myVSSA,3332
358
- osn_selenium/flags/models/blink.py,sha256=_kbxymCCl2jyFqStSYZgq0nQ4lDBdONmJKRW0Oa3FNA,12734
364
+ osn_selenium/flags/models/base.py,sha256=4MdShLxuwAMAgMn9HkWVGwvY1sm096VRD9iLOTtIoZs,3338
365
+ osn_selenium/flags/models/blink.py,sha256=TaZRInzBTBYov5PPQT5kBLwufmRHxgVPCdg1MHZ7qJk,12740
359
366
  osn_selenium/flags/models/chrome.py,sha256=q2pNrmJGfPa027exqTl7IcYEBHHvxUkTI-gE3kOZn74,6805
360
367
  osn_selenium/flags/models/edge.py,sha256=41DrOGlM2epFZpiAUbuzg2WvwVnfzSypfZQ1TBB8dOg,6747
361
- osn_selenium/flags/models/values.py,sha256=7l6bMuZhsKN2SERBz-7MEZYKgQmTvE90EPUa8l7QTvw,756
368
+ osn_selenium/flags/models/values.py,sha256=3LLFsSLNvSvBNhhifbrTc2cWZySQWJ8jnp2ZbRsxWhA,762
362
369
  osn_selenium/flags/models/yandex.py,sha256=b1dWqBzFu35gB1i59hT3Yzi_YF8cxQKm0QX3drbe1W0,6856
363
370
  osn_selenium/instances/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
364
371
  osn_selenium/instances/_functions.py,sha256=D_o3XgUwn1jQdtiwumq289pOa5PQYDlKsTaqkhLglw4,7644
@@ -376,13 +383,13 @@ osn_selenium/instances/sync/mobile.py,sha256=nztC3wuMXc8OhX_kT1HCz27AZU3Je9kKrfn
376
383
  osn_selenium/instances/sync/network.py,sha256=eZLC-Tu-CBCpHo9RoixEuNla6MG84VPTxRfxkmafvGc,2550
377
384
  osn_selenium/instances/sync/permissions.py,sha256=SJMCfHr0rH_KUpDMipquHmj2ncX07X_958VtBVbXpUY,2231
378
385
  osn_selenium/instances/sync/script.py,sha256=_S0uz3DI1HjdGYEABSdKJ2ZfUdXxP4po-acwmuSypoQ,2383
379
- osn_selenium/instances/sync/shadow_root.py,sha256=1c_df1ou5cHyHIyT22AJ6BKEVL-ZuZPhXV1A72ITgOo,2755
386
+ osn_selenium/instances/sync/shadow_root.py,sha256=XCQiGJcrErPN3oIvzA6PEkVRlaxHM2-qG40k3l7wqJM,3227
380
387
  osn_selenium/instances/sync/storage.py,sha256=nFRB9yoextcaijA2oGdvMYTpmBQeikn-_nBDtkcaHRo,2731
381
388
  osn_selenium/instances/sync/switch_to.py,sha256=gY12YaFbf_0gi5C1on9DsX__oe6uB84YIxERfRPafQU,2674
382
389
  osn_selenium/instances/sync/web_driver_wait.py,sha256=_hZrHjwEj9O-Z4BAn-cAhUc3Cs6jWZUDjm2-hd7aqMM,2301
383
390
  osn_selenium/instances/sync/web_element.py,sha256=5ZZgSI-RS8nl-UJ8ws0mkLbyXrrKA6r78i0z_xq1q8s,5030
384
391
  osn_selenium/instances/sync/web_extension.py,sha256=xLRXvoCJjQrmTMWVRP381fiSWlEZ5KAH3e-rAneOXo8,2309
385
- osn_selenium/instances/sync/action_chains/__init__.py,sha256=B0eGIaHTeiQ9YCN3C9Y-YdIdiUWKf_A05-WHe6WThHw,809
392
+ osn_selenium/instances/sync/action_chains/__init__.py,sha256=2d_NINXktewHyGGsl9zuL_p_q9kZNy3lv4NCdbn0GGc,1073
386
393
  osn_selenium/instances/sync/action_chains/base.py,sha256=fkveKwO2jxu84LKoFHD54sN85YaviMO63iA5pSaKUrI,1930
387
394
  osn_selenium/instances/sync/action_chains/click.py,sha256=6Rr00Aj52LqdisT7bs0Yz9gSsmayCTILhsLpze3BW2Q,2224
388
395
  osn_selenium/instances/sync/action_chains/drag_and_drop.py,sha256=40skRd9GphLz3R4bBGRtG6zloLTojl20N-ey3cvAHmc,1487
@@ -394,23 +401,23 @@ osn_selenium/instances/sync/action_chains/move.py,sha256=8w4bfHl0h9honQoEcZ7PiFY
394
401
  osn_selenium/instances/sync/action_chains/scroll.py,sha256=T63MhK4TZfQzLqGiEeSXZqCsdaBd2qILbXW9nThtXiA,1677
395
402
  osn_selenium/instances/sync/action_chains/utils.py,sha256=Q1SScbdtIcd_BTEolLXThigVx6J7o5Zv0_ojT3SmHKo,893
396
403
  osn_selenium/instances/trio_threads/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
397
- osn_selenium/instances/trio_threads/alert.py,sha256=6Pc2SuiIFQO0cPRA7Hbd60LvgUIivgd4HU_rvj7vF98,2687
398
- osn_selenium/instances/trio_threads/browser.py,sha256=IwyZBmNHdTZlS0bLjbZ6WVokiifo3GANxC_7sAubaSE,2921
399
- osn_selenium/instances/trio_threads/browsing_context.py,sha256=UuG3lF9mCE-pqU2V6o0--l8U8OFmHThTK-zQ-Lm154A,6779
400
- osn_selenium/instances/trio_threads/dialog.py,sha256=n7OVb2a4ct0ObeL1eCeAHmQUMVdcNBgowwnGOHwf4_Y,3107
401
- osn_selenium/instances/trio_threads/fedcm.py,sha256=m5uDucDJnIQzG3eIy2iwval6_9AfCj_G45KzbEATXEc,3372
402
- osn_selenium/instances/trio_threads/mobile.py,sha256=wuXxlgovtHUpB_v0sV8-Df2lBpz5wI_MKs116YAMyss,2992
403
- osn_selenium/instances/trio_threads/network.py,sha256=DbjCDh6qRnS9bi7EsmkPStX1f6Ou1jR4BtN3585Bt9k,3362
404
- osn_selenium/instances/trio_threads/permissions.py,sha256=RNmrlDsJg7eJFag49xn6YK2e0d6spKpRwP7BRjCpFZ0,2879
405
- osn_selenium/instances/trio_threads/script.py,sha256=C2Gb-NDzmqF9pE76A0QVJJbe8KZ4j8kCty_lPZSAiZs,3240
406
- osn_selenium/instances/trio_threads/shadow_root.py,sha256=7Bc1Y2kWO0U9mWwJfN-CDE_oI3Jk9CY93GK_CO1M9ks,3681
407
- osn_selenium/instances/trio_threads/storage.py,sha256=TteEAQq0j23QeDUrXAaVv3fq-H0CLVh-MArHDceyP0U,3453
408
- osn_selenium/instances/trio_threads/switch_to.py,sha256=B5AkMRDEGu8ekTbnJryspO_-gvEmx81l-9_CmHbvetk,3841
409
- osn_selenium/instances/trio_threads/web_driver_wait.py,sha256=5pOdrxCZ0iw-4-wmpU4Sk8U4VD6O4dC39HNk8pyXkck,2978
410
- osn_selenium/instances/trio_threads/web_element.py,sha256=l5LANSf7oiNEF4dbMCnZNMntkFRe8NRt3jPlDrXvr_Y,7251
411
- osn_selenium/instances/trio_threads/web_extension.py,sha256=DDbQeYubUmoHxaSLzUZdUy4-SN9Q5R-kDXOnmlA0Z5g,3002
412
- osn_selenium/instances/trio_threads/action_chains/__init__.py,sha256=ZiowYVCTCxpWo3vY47ml55340C4YTczBBMGpFEBZHK4,857
413
- osn_selenium/instances/trio_threads/action_chains/base.py,sha256=BrNJdox-9e1gXourS1q_FY5F_QE7X-KKnWi5nmfr97M,2502
404
+ osn_selenium/instances/trio_threads/alert.py,sha256=sqpBtS3mWJzDzck8s6E6ihDrI1Ohwrz9YVd_3AoLYnI,2695
405
+ osn_selenium/instances/trio_threads/browser.py,sha256=COssiQcitLK9dFzdRYCZM6-REWpAkuEEqxqxg8MSqDU,2929
406
+ osn_selenium/instances/trio_threads/browsing_context.py,sha256=bOMXMbrs60Ho1Lbpp-76Fbaro7Gf5yPpbYk9UkdmzU8,6787
407
+ osn_selenium/instances/trio_threads/dialog.py,sha256=ZZMBsrCBIKgetzAjhYw2CuGyEg16yHyjq8N834lHMQw,3115
408
+ osn_selenium/instances/trio_threads/fedcm.py,sha256=-NfCGFF-kEo7LL4acX2e7E21KnppZZpWazPXYgnNy8A,3380
409
+ osn_selenium/instances/trio_threads/mobile.py,sha256=ocHhSBfsgZu6VaTTqoQCJ3skMKomYmpeMK0TJvNxVzo,3000
410
+ osn_selenium/instances/trio_threads/network.py,sha256=JPEODqZ32cLoqIXl8ZZDlnljsWW6izw33SX_R66O0EE,3370
411
+ osn_selenium/instances/trio_threads/permissions.py,sha256=hwhsXguD1qpJCi9x6dIPcw0hKEhLUByd6AwdS6fYdxw,2887
412
+ osn_selenium/instances/trio_threads/script.py,sha256=7GgIe_dDahfGzU9uHYOSTJC7jslHsHQ2AWtEKIIB8-Y,3248
413
+ osn_selenium/instances/trio_threads/shadow_root.py,sha256=XqiietdWYBAPfnRui1UIqLA-tofOG-NGvnLhWm74S4I,4381
414
+ osn_selenium/instances/trio_threads/storage.py,sha256=Nd3fi8_NGhEDQMdNX52ewOYfdvTZFK1A5bMzqmguzz0,3461
415
+ osn_selenium/instances/trio_threads/switch_to.py,sha256=Mf_xMei7fHPuJF2VyrwA8yEwJrKv9VJfZa7-pBuu_ao,3849
416
+ osn_selenium/instances/trio_threads/web_driver_wait.py,sha256=4gan24YTKNIWsg2_fkHOptIkhNpCTBDUqDo2jOlgYxM,2986
417
+ osn_selenium/instances/trio_threads/web_element.py,sha256=xl99vQQsto_5ANtBeR3D21EvRAEvU-RnJdB-qiy_Tu4,7259
418
+ osn_selenium/instances/trio_threads/web_extension.py,sha256=AUmYyDdsuJcQ_4MlGXbXHTTrWgI7As3975fUhSqMzPs,3010
419
+ osn_selenium/instances/trio_threads/action_chains/__init__.py,sha256=XoM-x3vv9Ga82aZEO_gcMfR5GbYEhP30qfnzDAb8i_s,1145
420
+ osn_selenium/instances/trio_threads/action_chains/base.py,sha256=AwzrwRiGFcS2yIf2ORkjaqj0KAUQHsIrc5zJdoJa6VA,2510
414
421
  osn_selenium/instances/trio_threads/action_chains/click.py,sha256=N8Ygc1hdECGaDTy3sFgbwgPsOk2-bVN_PGm6bjlAn7o,2785
415
422
  osn_selenium/instances/trio_threads/action_chains/drag_and_drop.py,sha256=p-A-ufVm3fMuhepOy4koepWMUDOnRew3ghEDynHEuaI,1707
416
423
  osn_selenium/instances/trio_threads/action_chains/hm_keyboard.py,sha256=RlbqexEnZROADUpHG4K2AZnsFG8k9bsUYO8UYHEmEb0,1415
@@ -450,8 +457,8 @@ osn_selenium/instances/unified/action_chains/utils.py,sha256=R3ju82mLWyyf-dqRcVh
450
457
  osn_selenium/javascript/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
451
458
  osn_selenium/javascript/_functions.py,sha256=fpG8GnK2UogOcAcOOijf-nW_6NnJcO28C0PNe39ueJM,1564
452
459
  osn_selenium/javascript/functions.py,sha256=efb1sik-3j33bQ0HU_eM6MpGvsAFOhYsTB0z1wcXWfw,1382
453
- osn_selenium/javascript/models.py,sha256=dI6ZUM5c6Yn748xa24uNm45urLCsBzqKbOhqjxZTtqc,1312
454
- osn_selenium/javascript/fingerprint/__init__.py,sha256=QcVubVQWPbHRulch88Bdfp1_nGBORn0K5ZaFn58w4N8,3764
460
+ osn_selenium/javascript/models.py,sha256=5_k3WZ_KFOdqMdGIWtYagj0UkyL5tSxQpygO6pgY2NY,1318
461
+ osn_selenium/javascript/fingerprint/__init__.py,sha256=xHnT9iJNVfuhKqfaA068buYbPu3yDKJj3Na7a9LYxWU,3770
455
462
  osn_selenium/javascript/fingerprint/_decorators.py,sha256=peZxwMVrWmGIsgEptA6s_ursh54-pz6hnaCHAtIYce8,921
456
463
  osn_selenium/javascript/fingerprint/_functions.py,sha256=cxBjTF2g0WdLUA8w3wyHiZVGdwqdCuYW_YT6HnVKz8s,816
457
464
  osn_selenium/javascript/fingerprint/_typehints.py,sha256=lQ47ivVStRK-SSzTkMmS9ccNKl1QkkxLPteml57PK-8,525
@@ -463,13 +470,13 @@ osn_selenium/javascript/fingerprint/registry/_core_functions.py,sha256=cVsZtb7hP
463
470
  osn_selenium/javascript/fingerprint/registry/_functions.py,sha256=fbaOV7pq6J69vw4dH1byXsAIhpnJ1jn0Qui8DOsUOa4,20622
464
471
  osn_selenium/javascript/fingerprint/registry/_typehints.py,sha256=tEDHyqETzCjKT4WKtKKe-bwyqBRgq7tOdjWi6HOjXnc,125
465
472
  osn_selenium/javascript/fingerprint/registry/_utils.py,sha256=-hYQCCxaqgo9w1XWVLxkW797SbDFLvWf0U0molNIJgE,193
466
- osn_selenium/javascript/fingerprint/registry/models.py,sha256=RDY1IXbCyfXkT55CyPxGiuJZkI3OKVituqwP3vQKYv8,1449
473
+ osn_selenium/javascript/fingerprint/registry/models.py,sha256=S55kSMqyYvL7hof3dBnAXU0Lc90w6QAw6BgtNVIl8ks,1455
467
474
  osn_selenium/javascript/fingerprint/spoof/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
468
475
  osn_selenium/javascript/fingerprint/spoof/_functions.py,sha256=dvZiTlUwMuHswqQuXhzrHnBV72NY5W9NTrW7op_X87E,4884
469
476
  osn_selenium/javascript/fingerprint/spoof/_templates.py,sha256=3NZ7U1Q1wv2mrp-0hRZGwPIPDVvYqUd6jZvcXuaiWX4,2789
470
477
  osn_selenium/javascript/fingerprint/spoof/_typehints.py,sha256=5QkerrJ4IRoUrz3kYFvjw6O0akH5Rb1V3CdKzUkKN9E,468
471
- osn_selenium/javascript/fingerprint/spoof/core_rules.py,sha256=rC2F7nyLnyslpm-bFp5YxCNl-Eng_PecENwatlQbl_Q,3819
472
- osn_selenium/javascript/fingerprint/spoof/noise.py,sha256=rMDpeZHlIw1WleaEjUE8nY2gFmt2AA_1aVZlW_RaBAw,1236
478
+ osn_selenium/javascript/fingerprint/spoof/core_rules.py,sha256=C2XeHEPjRJIOpxzJu29ekDGqYr9QffmMOjqygOOhzZI,3825
479
+ osn_selenium/javascript/fingerprint/spoof/noise.py,sha256=KE53xt39aleYNTAMrkGrcOTy4lKLR6gIvUXS8y9vSxA,1242
473
480
  osn_selenium/javascript/fingerprint/spoof/rules.py,sha256=bwqrlAcaOLlb4g2Vst8gLeCp_a9o-rwYGOjUKhSkStI,7089
474
481
  osn_selenium/javascript/scripts/check_element_in_viewport.js,sha256=3OXOQRkRGMsgpVz5Xfc9z8n7pbqXEj9c3ObjI0VHTjk,415
475
482
  osn_selenium/javascript/scripts/get_document_scroll_size.js,sha256=ro5wD8BuQKXi2L2oa4Ujpn1v2QL-LcYbJD1G-NXdO2g,106
@@ -483,31 +490,31 @@ osn_selenium/javascript/scripts/open_new_tab.js,sha256=WNU5ftIQldBXza43HutLkRHo0
483
490
  osn_selenium/javascript/scripts/start_fingerprint_detection.js,sha256=VmhgWBnG9NMvmMSbKfPxFEPmJs8-f52YlADh8rkKgwk,1476
484
491
  osn_selenium/javascript/scripts/stop_window_loading.js,sha256=H76JEUyqvuzomyoywSNq1vklcBV_UDlpN0qF00y-nvY,14
485
492
  osn_selenium/webdrivers/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
486
- osn_selenium/webdrivers/_args_helpers.py,sha256=luAVETkh3pqZu5G_Qe2JYyJ9HFh-fTbD0E5PfI00PlA,4773
487
- osn_selenium/webdrivers/_bridges.py,sha256=qd43Y-tCjPoNs-HTgUZd_RrYrqR0usTmaDFk-UlhRVs,1459
493
+ osn_selenium/webdrivers/_args_helpers.py,sha256=ZVWUKZodDj_3DvSORdO5ENyX3RKG0zbcNOfASCX9D64,4761
494
+ osn_selenium/webdrivers/_bridges.py,sha256=1R60Qul7sble6-3tBUKlJQQjYTvDHSKVAIoKEfPcG0A,1447
488
495
  osn_selenium/webdrivers/_decorators.py,sha256=Y2_ULmC1IJSkyMTV-5luSZs11x3rkYBNcwk2YnP4p54,2194
489
496
  osn_selenium/webdrivers/_typehints.py,sha256=91SLyDDb59Y4ufTkZh0Xjxnp3jBtyBW98jy8f5xk3YE,237
490
497
  osn_selenium/webdrivers/protocols.py,sha256=AONJSrirHE0KEtw3r795cRkskvJrI7BNUSVPHBe4tZA,804
491
498
  osn_selenium/webdrivers/_executable_tables/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
492
499
  osn_selenium/webdrivers/_executable_tables/functions.py,sha256=7a7gu2nu38Hy0rDNXsJJl_hUEm5m3NnJl6fnWslnOQg,3537
493
- osn_selenium/webdrivers/_executable_tables/models.py,sha256=hYYAtw_MIu4fXMOxO0xiWvz76cV5J9fRXGqn_uXbHZk,426
500
+ osn_selenium/webdrivers/_executable_tables/models.py,sha256=yQrOAwQ7nWAg7KdRT5gFkxiuw4xMZ3li-dn-KBJqeDE,432
494
501
  osn_selenium/webdrivers/sync/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
495
- osn_selenium/webdrivers/sync/blink/__init__.py,sha256=5S_DZhCaFu8WyQRlKGXbDPn16Il2NIeRkP3HWoz4wHk,4610
496
- osn_selenium/webdrivers/sync/blink/base.py,sha256=nFRhuU8sfaCeIZ8WCdZN4kSh-eFSM8yZS8j7BY6vghs,4778
502
+ osn_selenium/webdrivers/sync/blink/__init__.py,sha256=oW1-kPRhHawKLJo1eYDHH7I1KNl0xEZsoVcu2u0twW8,5033
503
+ osn_selenium/webdrivers/sync/blink/base.py,sha256=Ul4UFmPV3L0LAGSNRCawNrkJR1jT2bZRr1M6jSz_sqk,5421
497
504
  osn_selenium/webdrivers/sync/blink/casting.py,sha256=zHHF8CsQa4Qr2tP0mGOLjxBsZw75rrT9dU8XJwXX7b4,1134
498
505
  osn_selenium/webdrivers/sync/blink/features.py,sha256=KSLlECJE0hvognIUGxqHEy0vqksTKay9JCUsNPW-MRA,838
499
506
  osn_selenium/webdrivers/sync/blink/lifecycle.py,sha256=aoOBs-83gCgz108Vcsn-9sM0Z7cjZ1RiVobS02E-px0,1950
500
507
  osn_selenium/webdrivers/sync/blink/logging.py,sha256=V2tkmnXFouDQysYnG0wktZau2Q7aXGSp1hF47F_bSbM,663
501
508
  osn_selenium/webdrivers/sync/blink/network.py,sha256=hbHWkOohcIeYFHeV1NETo_FY59kjd9qVGkToB6ybv9U,876
502
509
  osn_selenium/webdrivers/sync/blink/settings.py,sha256=UlJu8yr0xzF8PISqRaJ6VMiiZv_20vMp0k5De--wuN4,1864
503
- osn_selenium/webdrivers/sync/chrome/__init__.py,sha256=AYyT7D4kUJ4B0bFgXSwHHd3v3sOJdEFYE2oxKG096tY,2088
504
- osn_selenium/webdrivers/sync/chrome/base.py,sha256=rfO80wkW8sySZiBq4FmfoCcEWQca3EJxt7ERvTNS_oM,3805
510
+ osn_selenium/webdrivers/sync/chrome/__init__.py,sha256=nFVkKTlEIFYc_oxHFXrO8XyaFGNHKV6zI6tA6uiEidc,3977
511
+ osn_selenium/webdrivers/sync/chrome/base.py,sha256=SkMDTBs_Zex4Sk2oQ-oO5FZQBHLqf8NigH2plwqr-AU,4448
505
512
  osn_selenium/webdrivers/sync/chrome/lifecycle.py,sha256=UWRJLlRR_gRV_3AJAsxe5Nae80ni0ROEqO5hE_opORE,1888
506
513
  osn_selenium/webdrivers/sync/chrome/settings.py,sha256=IaoaZThCkHSoVVRJDiPSGj3dBiNc61NmF8ot1OoVadA,1781
507
- osn_selenium/webdrivers/sync/core/__init__.py,sha256=b7INtWlEk-J8T0S1X7EMw3lVPG2ngLWiHNn61utuej0,3440
514
+ osn_selenium/webdrivers/sync/core/__init__.py,sha256=6OrZ6uVaVISp_QVw__qcBRze4ZpogpWTdiPMOHlyfvs,3775
508
515
  osn_selenium/webdrivers/sync/core/actions.py,sha256=OwJNKDhCCxjp9TvLg-wxP4QScAdYhsP6-wlIf-B98lI,1680
509
516
  osn_selenium/webdrivers/sync/core/auth.py,sha256=ik_5iNLUBivhLekwOi8B4MGEBzh4dPPkjgQA61BTEao,2267
510
- osn_selenium/webdrivers/sync/core/base.py,sha256=I68J-WRZzqSRWF2jUntXXucrhHh_3qhkebJTAW2SU2c,5076
517
+ osn_selenium/webdrivers/sync/core/base.py,sha256=sgxwCk322xGATrQALkSGH65jWQ5VtjxcVR0tphhe9yw,5591
511
518
  osn_selenium/webdrivers/sync/core/capture.py,sha256=W2dxXyc9ZinirqirgH3ppoE61_H9CUBOSHtePiNoa4s,1120
512
519
  osn_selenium/webdrivers/sync/core/comonents.py,sha256=W9XbMy-N-vSYb85bcjQHedhnBhgdMY3PpfcjOocDCYA,1932
513
520
  osn_selenium/webdrivers/sync/core/devtools.py,sha256=N_4X8buxOoZRnO0OgXQJsfo6V9hs0Gqb5lJmLI2NqHU,1437
@@ -520,54 +527,54 @@ osn_selenium/webdrivers/sync/core/settings.py,sha256=7d3GdxDVk4GcwBRXF-exRVN1MqO
520
527
  osn_selenium/webdrivers/sync/core/storage.py,sha256=JYuYiqT9q7MaWYeFtxnNSWjBeLlfCjKZYudE4wAgf_Q,1255
521
528
  osn_selenium/webdrivers/sync/core/timeouts.py,sha256=hOEf97a3h1PxCMRojEvhIHR-PHlA2M0k_U-UgGmJN1A,1765
522
529
  osn_selenium/webdrivers/sync/core/window.py,sha256=iQYgBTCYyd10zsO8NcTd_ZKwlUueTJkHJpO6miwnUPk,3025
523
- osn_selenium/webdrivers/sync/edge/__init__.py,sha256=EXq712gc4nPTljedMKvNqsqS0RfrIrimZVeFCb6kv9M,2056
524
- osn_selenium/webdrivers/sync/edge/base.py,sha256=HC_GE5NuD2ietGc5saNlznIxSnNZX7WtX8mtsOa-eVI,3741
530
+ osn_selenium/webdrivers/sync/edge/__init__.py,sha256=QY3czHlpQ8MeqmVAWq-N5WynEhMBpyrGiRX8l-UMCJ4,3930
531
+ osn_selenium/webdrivers/sync/edge/base.py,sha256=CKm1KwF1RYo8E3BdQnOSUyywlrQKibCtq056mloSy7o,4384
525
532
  osn_selenium/webdrivers/sync/edge/lifecycle.py,sha256=C2SQFdf9AKdsvPryxoDH6yyme4Q9XuSMqXSN_OL4yvU,1862
526
533
  osn_selenium/webdrivers/sync/edge/settings.py,sha256=QP4HN45uEhCesZ7Io8JO02LaaqTNf0moVCOajzy1jpM,1755
527
- osn_selenium/webdrivers/sync/yandex/__init__.py,sha256=AXu0t0InWPWdxiWNQDjlLPPcF5nDemYz6EMzefxtT4E,2096
528
- osn_selenium/webdrivers/sync/yandex/base.py,sha256=4mL2vAGmloBO0QsMn0IfhKlXFmRmAeVTe4bb9UtV-sQ,3651
534
+ osn_selenium/webdrivers/sync/yandex/__init__.py,sha256=w6iwcNNBlnIQCI_kKsZk6oxQi94v3CIpgjx2y0Gu-YU,3978
535
+ osn_selenium/webdrivers/sync/yandex/base.py,sha256=PVYyNyYUPMTV9Q9m1bue8FWtPgGc7mtl17aKKyoSG3M,4294
529
536
  osn_selenium/webdrivers/sync/yandex/lifecycle.py,sha256=ydeZqMalO5w4uzr8KZVtvfkBrT0BJPQ1cDkbzkiVBHA,1891
530
537
  osn_selenium/webdrivers/sync/yandex/settings.py,sha256=c1DQsI8j7my21V434AwDrexc0F6c21HCf4RyfwXHjMI,1781
531
538
  osn_selenium/webdrivers/trio_threads/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
532
- osn_selenium/webdrivers/trio_threads/blink/__init__.py,sha256=X-ErlajeHTZkhCkZg6catfLNKGHrqbxNVNeb2tUhGPg,5240
533
- osn_selenium/webdrivers/trio_threads/blink/base.py,sha256=9OzMhIgaNzzjJx_zKW6iW4flmdTPpeL4kIGPdNAjVxs,5050
534
- osn_selenium/webdrivers/trio_threads/blink/casting.py,sha256=EMi6NL-KNsEHVhf59NjGYfq_PC8MLdLtMe_l1ClbM5o,1428
535
- osn_selenium/webdrivers/trio_threads/blink/features.py,sha256=Myoc4W319jWeM30bXjHechL6i3YcqkjA_pL-Ah5oKIs,1042
539
+ osn_selenium/webdrivers/trio_threads/blink/__init__.py,sha256=X5_e9O2OC7vEpw4yjdtkuTi2TX9JhDT8eAwje_hFrCs,5663
540
+ osn_selenium/webdrivers/trio_threads/blink/base.py,sha256=sMB97QRTGePi5Tt4yZEbgyDKKD2p6R7FEmZFMsi69LM,5555
541
+ osn_selenium/webdrivers/trio_threads/blink/casting.py,sha256=G95zvnlwsJs0JP8L_ZtocPvJ8I16yEcsdbja3aps-ZA,1436
542
+ osn_selenium/webdrivers/trio_threads/blink/features.py,sha256=lOGHJhiNdXr8Mdgy5bN_iHOU2MClabOF1Yt0BmR5yMU,1050
536
543
  osn_selenium/webdrivers/trio_threads/blink/lifecycle.py,sha256=fRgyOsDrS40MUotNSYGeyhlFzbjkb-MC4jYhEf1Ei0s,2093
537
- osn_selenium/webdrivers/trio_threads/blink/logging.py,sha256=w_DO9u42V1Yff9zMbVfUlD5ohxUnnb6yEQc2vhs7HdQ,822
538
- osn_selenium/webdrivers/trio_threads/blink/network.py,sha256=ERmfKiKxkr2UrY93SQjZOon27IWBj3oCivhIlGduX0w,1080
544
+ osn_selenium/webdrivers/trio_threads/blink/logging.py,sha256=tYOai5_FXauo3r4C_zanrmMKzvJ99b2m33FuP3DN9-c,830
545
+ osn_selenium/webdrivers/trio_threads/blink/network.py,sha256=N-sPXKM9C31YYhxC4EFmLHB5yPqHswEHH8FeVx0Hkqo,1088
539
546
  osn_selenium/webdrivers/trio_threads/blink/settings.py,sha256=HzVZBQ-o9htazQaiW7Y35rhrc06Jva54en6-AnrlDdQ,1960
540
- osn_selenium/webdrivers/trio_threads/chrome/__init__.py,sha256=1_SRFMBI0lNI04WoR7C67vqvAkTSJPkSFf8DkFR6uLE,2683
541
- osn_selenium/webdrivers/trio_threads/chrome/base.py,sha256=XR0yQFwun7YczFz8apbVR_WXfBK44IdyTwX3lkGzvhg,3697
547
+ osn_selenium/webdrivers/trio_threads/chrome/__init__.py,sha256=i2LAzrRCElFbdmf0QwXDNkw8n6OtY7YkvfpUh6zoAaw,4374
548
+ osn_selenium/webdrivers/trio_threads/chrome/base.py,sha256=S5lm3tZRKxBK3TqFXD3nCQtQU7-9guepZIs7V_SFO3M,4369
542
549
  osn_selenium/webdrivers/trio_threads/chrome/lifecycle.py,sha256=rPsro1ACoFKoEDMOnzkOx7uodj-yF95vIV4jw0EX_PY,1986
543
550
  osn_selenium/webdrivers/trio_threads/chrome/settings.py,sha256=GGmw29BckAZx7KFnbetYco-q0jx48WtU7EpuhSdrrxk,1969
544
- osn_selenium/webdrivers/trio_threads/core/__init__.py,sha256=cTpgNL5Q4Rnt5_cnFDgi6cEr0ApYUaBQ57RFIua6ns4,4391
545
- osn_selenium/webdrivers/trio_threads/core/actions.py,sha256=-MMerZN-M4is4yeMdQOfOrM1Qxnnd1bKVUly0tB6QDQ,1924
546
- osn_selenium/webdrivers/trio_threads/core/auth.py,sha256=RemMX6qtnD7SLf8cKSgBl1S1vPov3PWt2s1FG9VZX6c,3008
547
- osn_selenium/webdrivers/trio_threads/core/base.py,sha256=TR6fungggUdUXj2wBJLNNEG1qnhAURyvx-rEc0kwXVk,5917
548
- osn_selenium/webdrivers/trio_threads/core/capture.py,sha256=sZJ9cVB44hAH3xQZRF0PpLL-UzOgK0fyXmNloDQCY2Y,1459
549
- osn_selenium/webdrivers/trio_threads/core/comonents.py,sha256=WaoD2h1MOLRTmKvWpu67iUN39oZ54az3w-ErmV--t_4,2796
550
- osn_selenium/webdrivers/trio_threads/core/devtools.py,sha256=1yo9jzw_LJJkx8WGaM32tSoS3cEc_FrP6Md8Cwjc8aE,1733
551
- osn_selenium/webdrivers/trio_threads/core/element.py,sha256=NnZ6VxzpHXbX3Qx3oMiFxgJAwowujrjCLBU3xjcF1R0,1847
552
- osn_selenium/webdrivers/trio_threads/core/file.py,sha256=BxEx58bpsc5KFc7c-6zhUnFFmhdSNUc1bRQBVlJQzqg,1668
553
- osn_selenium/webdrivers/trio_threads/core/lifecycle.py,sha256=leFvJaqEn73WBoF8Vu-LdphN5V0mFiWFjXvhktCa2zw,2083
554
- osn_selenium/webdrivers/trio_threads/core/navigation.py,sha256=disc0AeqPgmsyIuoZr3dtjmLz1E1Ok56bkzFgaZF-vE,1179
555
- osn_selenium/webdrivers/trio_threads/core/script.py,sha256=jfrO7hXpP8Z0FjrQgp_acYUAOFdeCl0QuqQjJzJBQxc,2130
556
- osn_selenium/webdrivers/trio_threads/core/settings.py,sha256=e-UqgjmGRMQEyCBkK9dnQZA-2EuD13CJi2nJLNXet_s,1189
557
- osn_selenium/webdrivers/trio_threads/core/storage.py,sha256=8Lk3DSyGh8KHfnNaRhJirX9WJRQylRt0Ncmbp3zwFo4,1686
558
- osn_selenium/webdrivers/trio_threads/core/timeouts.py,sha256=ey3nvrufdlfrb7TLrTMREps76w6a34r0wDwwScoEwZY,2149
559
- osn_selenium/webdrivers/trio_threads/core/window.py,sha256=eQ3QQbHnDKd_4kmVhfbEvoWEZjV0QvA8_f2mzK9rXZs,3996
560
- osn_selenium/webdrivers/trio_threads/edge/__init__.py,sha256=zbE0FVMhr_e1vLGuPo-_t_5prZVsECRUbeeEr-h114o,2638
561
- osn_selenium/webdrivers/trio_threads/edge/base.py,sha256=7K3UGHhYNg6dyausujeYf1VPVdFmks-GiWZ-uG9RU58,3635
551
+ osn_selenium/webdrivers/trio_threads/core/__init__.py,sha256=m399GN5uvJscSGk_go9_IneLY3Jj9OpC3Xy5H09sh6U,4603
552
+ osn_selenium/webdrivers/trio_threads/core/actions.py,sha256=Fsw5Uxcj5WG7-Nf8pMWGfwvm6t9ahHSnlIqbZ1up7Y4,1932
553
+ osn_selenium/webdrivers/trio_threads/core/auth.py,sha256=0QVBmsMMNDtZxhgl2pgp6vnDpx-NRH6tJX6oc0NAJZ8,3016
554
+ osn_selenium/webdrivers/trio_threads/core/base.py,sha256=61O7f1ODO6Oq9yFtRZ2L5ZCKStTk3h4hzif8MS0r-TU,6440
555
+ osn_selenium/webdrivers/trio_threads/core/capture.py,sha256=5SCfhbJUYYAliaKg4HSW94516QZwIZxmud7S1xqeslE,1467
556
+ osn_selenium/webdrivers/trio_threads/core/comonents.py,sha256=KQ3BkFKmP_ryNy53qP6FeQioCfV1nXA5KDtNeb-WfCQ,2804
557
+ osn_selenium/webdrivers/trio_threads/core/devtools.py,sha256=cI-a95lg-3ePsGDL2qvtZqF0PS1-a54r7j7aihp2TkM,1741
558
+ osn_selenium/webdrivers/trio_threads/core/element.py,sha256=ybBOuK9ih4Zvtd33G0VKrrMBIy_Xu_XEhYaS0cE5aco,1855
559
+ osn_selenium/webdrivers/trio_threads/core/file.py,sha256=K98858mTSAvJKMbxX48VP7RS7u6jVJzeRAitoEU-w9o,1675
560
+ osn_selenium/webdrivers/trio_threads/core/lifecycle.py,sha256=UwNmSfzD9tJ5if1cRrbL1bTr7uG4EztuEvp0wR6DnRk,2091
561
+ osn_selenium/webdrivers/trio_threads/core/navigation.py,sha256=jVen_X7GcdBJixu_eZx_6Xi0GzaIW8IEedrkWmZhAEI,1187
562
+ osn_selenium/webdrivers/trio_threads/core/script.py,sha256=AKezBO2ad8W0vjd9BveD9TwBL6rFccBkIDWyvPvkIPQ,2138
563
+ osn_selenium/webdrivers/trio_threads/core/settings.py,sha256=dAlE-_mXv1LkdUcsbAPqL98F4aT3RRP_w2joq5bJ1gg,1197
564
+ osn_selenium/webdrivers/trio_threads/core/storage.py,sha256=ivWGQUNIW3N-Re-OeVdsmpWRwh6Z5KnXXl1Hh8HOtss,1694
565
+ osn_selenium/webdrivers/trio_threads/core/timeouts.py,sha256=2fn4ID7ARZtEXRasCHfmxRhy1bUSzN8WJ_Ywjmz_8gA,2157
566
+ osn_selenium/webdrivers/trio_threads/core/window.py,sha256=dA0XKdi4Ui3KsoAfuwB5EdWFfwUeR5OrqODJjKauKgM,3959
567
+ osn_selenium/webdrivers/trio_threads/edge/__init__.py,sha256=cl6Sqb0fcWfesPiQx5aG2C_GigFhLxypLtmbFMqmm3c,4316
568
+ osn_selenium/webdrivers/trio_threads/edge/base.py,sha256=WQGGLbtTO7yCdkPJYMHCSzUkAlNmbIwr45aAaV7oEpc,4307
562
569
  osn_selenium/webdrivers/trio_threads/edge/lifecycle.py,sha256=NMLLcIW1W6Q7fwFYYfzs5t6HR0JCwN2BO7FHUhpY1Vw,1960
563
570
  osn_selenium/webdrivers/trio_threads/edge/settings.py,sha256=fd-IcXNrxCjkddVli3_SrNKmDOkCkLC-6lEPnwCl-xI,1943
564
- osn_selenium/webdrivers/trio_threads/yandex/__init__.py,sha256=D47cAfNFaTmquYJtralsei5p_8IPqti-i8abSHUsRbI,2680
565
- osn_selenium/webdrivers/trio_threads/yandex/base.py,sha256=c1o2yFLxtO664qIdIrievY_EazGhcESVCEaE9D4iRv8,3543
571
+ osn_selenium/webdrivers/trio_threads/yandex/__init__.py,sha256=NXZdkAVxKs-iN6DQBeSNfwu3-qJInYf28pkzDs7qte8,4364
572
+ osn_selenium/webdrivers/trio_threads/yandex/base.py,sha256=HBiNhLyCtOQB4GdHFyhpj-ba4XxTeddox_7axkxppiM,4215
566
573
  osn_selenium/webdrivers/trio_threads/yandex/lifecycle.py,sha256=J8Dn0WU_jmXjQKcFXtRpObGwSsyo11r3T81F2ddBYiA,1989
567
574
  osn_selenium/webdrivers/trio_threads/yandex/settings.py,sha256=pj89PlysSD8UNo83OxaLjieySUvV22c3px3AQBK9iAk,1972
568
575
  osn_selenium/webdrivers/unified/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
569
576
  osn_selenium/webdrivers/unified/blink/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
570
- osn_selenium/webdrivers/unified/blink/base.py,sha256=pAVdZZNFA7XjSm7j3fwXXaMNnWSRgICasR0CIfPoqDs,4739
577
+ osn_selenium/webdrivers/unified/blink/base.py,sha256=yFqkJpC0diFDRPCI5LGIlfcMMcIgyCGpwnmXTqVQJ6U,5017
571
578
  osn_selenium/webdrivers/unified/blink/casting.py,sha256=uZij47mEBOzT-Lxpr6QRJxsttvpN0TPViCvhvmGSiSo,1014
572
579
  osn_selenium/webdrivers/unified/blink/features.py,sha256=sahIP2sSSUs_GfOhK8HjQR8mbbpO8bCLWGz4C0K6rPc,649
573
580
  osn_selenium/webdrivers/unified/blink/lifecycle.py,sha256=xNVsg8qgv6dV6RmS-JPqzGyf9aQEnhIHfVxOAqCBIUU,3578
@@ -575,13 +582,13 @@ osn_selenium/webdrivers/unified/blink/logging.py,sha256=Ek6oMRg12tz8ZvmrWVHqontG
575
582
  osn_selenium/webdrivers/unified/blink/network.py,sha256=p5cmjEsu5Bu6kK1H0R-Mqsf1lYxhX96ETwmq_k9ugKE,683
576
583
  osn_selenium/webdrivers/unified/blink/settings.py,sha256=JjkSnHczHfsf09M9OTyDJ-IX2Y-0gxWKpKPfn73eo7s,2676
577
584
  osn_selenium/webdrivers/unified/chrome/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
578
- osn_selenium/webdrivers/unified/chrome/base.py,sha256=vSNQVZ2VKYK5xv4-m9HHKNF8nltodk1iZVhoFBoxZDk,1575
585
+ osn_selenium/webdrivers/unified/chrome/base.py,sha256=EHZ6JItvrIn24UUJbH1NfvOBvroldxcSpa2TSgtomS8,1853
579
586
  osn_selenium/webdrivers/unified/chrome/lifecycle.py,sha256=vZzIkRvIRKlA3RgNA-jytnByn5_25cod9lb5uZp_2Qg,2664
580
587
  osn_selenium/webdrivers/unified/chrome/settings.py,sha256=YJ6XXwRArptgCNeRizRDyTuQn7heSLvfdFehnRPA3Ps,1462
581
588
  osn_selenium/webdrivers/unified/core/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
582
589
  osn_selenium/webdrivers/unified/core/actions.py,sha256=b7zu4FV8Gv9acxJbjPl8hnfmqIZYSDWA-vBRrr_7Ng4,1115
583
590
  osn_selenium/webdrivers/unified/core/auth.py,sha256=MH5b4iMScvjdA49kW_3Y7XJoLG8mOdrLmA1HCC9wDGs,1983
584
- osn_selenium/webdrivers/unified/core/base.py,sha256=F_s1mqhDqHxgLkmiP1XxmR5NQpJ-xbGnstqZL_aeHco,3963
591
+ osn_selenium/webdrivers/unified/core/base.py,sha256=JIfBJguJylfHb33C7-elhZsApc1pzFPfti9TFBs4H5A,4390
585
592
  osn_selenium/webdrivers/unified/core/capture.py,sha256=yqUeDcuIvjU16_xgFlg0EdxRpD7Em7W9NVFiZjBCsvE,1057
586
593
  osn_selenium/webdrivers/unified/core/components.py,sha256=p1qSykW8kJZoDcBvKpo1bHXQ9SJEKVQnvbi-nILvS-g,821
587
594
  osn_selenium/webdrivers/unified/core/devtools.py,sha256=ADmdbwoSaUEs_UOE37-QCQZmFl9lj4irUSht3eKRDTA,1175
@@ -595,14 +602,14 @@ osn_selenium/webdrivers/unified/core/storage.py,sha256=FbGrVfWhjZWKo_z6qQMoIW-oD
595
602
  osn_selenium/webdrivers/unified/core/timeouts.py,sha256=UkeBfaqVqwrgn1VxPpaLNXTMAb84DoCnxD2HDNbCPxg,2015
596
603
  osn_selenium/webdrivers/unified/core/window.py,sha256=0a-r7HSPf94npWRALXkgoz0XOVv_d2SKQtT_1i3b9Ys,3893
597
604
  osn_selenium/webdrivers/unified/edge/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
598
- osn_selenium/webdrivers/unified/edge/base.py,sha256=CENi5e23VCJ2_hdxSPOtKB2kfFO4dSn4PvuYI_ewbPo,1547
605
+ osn_selenium/webdrivers/unified/edge/base.py,sha256=uQv4y-Ctjhn6CKdOu-rCNyRGd6PaKozQDqhnIFP0a9Y,1825
599
606
  osn_selenium/webdrivers/unified/edge/lifecycle.py,sha256=_fqNLMcEWPKT-idUYJ0U3t_30F3ix9W_m4CsqQhNs5I,2648
600
607
  osn_selenium/webdrivers/unified/edge/settings.py,sha256=wilLXahZrurKW3GQoQk4IFRMbWkUZZDTxHs83oe-HmU,1450
601
608
  osn_selenium/webdrivers/unified/yandex/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
602
- osn_selenium/webdrivers/unified/yandex/base.py,sha256=jUSdPWSqOvLKvPC8jLZJaJfF4D7A-_L9-Tmdxm2Q4IE,1572
609
+ osn_selenium/webdrivers/unified/yandex/base.py,sha256=3j2dDiwbFfXGzvy9Fzl2pdPUj34GsPBDHL3wQb9syJ0,1850
603
610
  osn_selenium/webdrivers/unified/yandex/lifecycle.py,sha256=2U7q3ZOl7JY3Eau4IjMYOv7sCoQcVo5nfYICJQosGxE,1718
604
611
  osn_selenium/webdrivers/unified/yandex/settings.py,sha256=I30DH6NcEnxEuiuv5Uzhi_BxR7eJajXg_oyiXkN0oNE,1465
605
- osn_selenium-1.0.0.dist-info/METADATA,sha256=SQ-xxMm31TW59Ke75XIE0fenSUZe7NjRqmzoIsUE7vs,14673
606
- osn_selenium-1.0.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
607
- osn_selenium-1.0.0.dist-info/top_level.txt,sha256=T_b9h6WLPsDgWcxdbZcs8oARueoVzoOVB0LpMWGNO_c,13
608
- osn_selenium-1.0.0.dist-info/RECORD,,
612
+ osn_selenium-1.1.0.dist-info/METADATA,sha256=hSVSNp5mNAfuUl1yzOEz1No-an3YFQF0iy280lL179o,16086
613
+ osn_selenium-1.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
614
+ osn_selenium-1.1.0.dist-info/top_level.txt,sha256=T_b9h6WLPsDgWcxdbZcs8oARueoVzoOVB0LpMWGNO_c,13
615
+ osn_selenium-1.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5