mirror of
https://github.com/web-infra-dev/midscene.git
synced 2025-07-14 04:20:57 +00:00

* feat: enable search area for locate * fix: update evaluation * fix: locator * feat: show searchArea in report * chore: add yaml support for aiTap * feat: use adb instead appium * feat: Adds debugging information and reconstructs input text capabilities * feat: refactoring Android related functions and adding android modules * feat: update the image scaling algorithm, adjust the Android page class to support device scaling, and remove test files that are no longer needed * feat: adjust the Android page class to support device scaling, and remove test files that are no longer needed * feat: use appium-adb instead of bare command * fix: update entry for @midscene/android * feat: optimize the screenshot processing logic, add a backup mechanism when screenshots fail, and update test cases to accommodate new features * fix: rethrow error * feat: add Android debug configuration options and update documentation * chore: fix code style in #483 (#492) * fix: remove try for error handle by outside --------- Co-authored-by: yutao <yutao.tao@bytedance.com> Co-authored-by: linyibing <linyibing@bytedance.com> Co-authored-by: yuyutaotao <167746126+yuyutaotao@users.noreply.github.com>
14 lines
201 B
TypeScript
14 lines
201 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import { AndroidPage } from '@/android';
|
|
|
|
describe(
|
|
'extractor',
|
|
() => {
|
|
it('android', async () => {});
|
|
},
|
|
{
|
|
timeout: 90 * 1000,
|
|
},
|
|
);
|