@midscene/android 0.14.2 → 0.14.3-beta-20250409031306.0

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 (33) hide show
  1. package/bin/playground +3 -0
  2. package/dist/es/index.js +4 -0
  3. package/dist/es/playground.d.ts +2 -0
  4. package/dist/es/playground.js +852 -0
  5. package/dist/lib/index.js +4 -0
  6. package/dist/lib/playground.d.ts +2 -0
  7. package/dist/lib/playground.js +872 -0
  8. package/dist/types/playground.d.ts +2 -0
  9. package/package.json +25 -4
  10. package/static/index.html +1 -0
  11. package/static/scripts/htmlElement.js +5 -0
  12. package/static/scripts/htmlElement.js.LICENSE.txt +12 -0
  13. package/static/scripts/htmlElementDebug.js +2 -0
  14. package/static/scripts/htmlElementDebug.js.LICENSE.txt +12 -0
  15. package/static/scripts/stop-water-flow.js +2 -0
  16. package/static/scripts/stop-water-flow.js.map +1 -0
  17. package/static/scripts/water-flow.js +54 -0
  18. package/static/scripts/water-flow.js.map +1 -0
  19. package/static/static/css/index.fa8491ca.css +2 -0
  20. package/static/static/css/index.fa8491ca.css.map +1 -0
  21. package/static/static/js/792.8ac93205.js +467 -0
  22. package/static/static/js/792.8ac93205.js.LICENSE.txt +1673 -0
  23. package/static/static/js/792.8ac93205.js.map +1 -0
  24. package/static/static/js/async/166.208adb78.js +2 -0
  25. package/static/static/js/async/166.208adb78.js.map +1 -0
  26. package/static/static/js/index.906d88a4.js +504 -0
  27. package/static/static/js/index.906d88a4.js.map +1 -0
  28. package/static/static/js/lib-polyfill.c3257577.js +2 -0
  29. package/static/static/js/lib-polyfill.c3257577.js.map +1 -0
  30. package/static/static/js/lib-react.bac2292c.js +3 -0
  31. package/static/static/js/lib-react.bac2292c.js.LICENSE.txt +39 -0
  32. package/static/static/js/lib-react.bac2292c.js.map +1 -0
  33. package/LICENSE +0 -21
package/bin/playground ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require('../dist/lib/playground.js');
package/dist/es/index.js CHANGED
@@ -440,6 +440,10 @@ async function agentFromAdbDevice(deviceId, opts) {
440
440
  if (!deviceId) {
441
441
  const devices = await getConnectedDevices();
442
442
  deviceId = devices[0].udid;
443
+ debugPage(
444
+ "deviceId not specified, will use the first device (id = %s)",
445
+ deviceId
446
+ );
443
447
  }
444
448
  const page = new AndroidDevice(deviceId);
445
449
  await page.connect();
@@ -0,0 +1,2 @@
1
+
2
+ export { }