File size: 116,767 Bytes
33c2be4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 | {
"examples": [
{
"input": "<image_1>根据此界面的信息,如果一个座位属于“普通区”,它的票价是多少?请从下列选项中选择一个回答:\nA. ¥37.9\nB. ¥40.9\nC. ¥41.9\nD. 无法确定",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 872,
"step_id": 9,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766469099942_b6ce1df2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,“全季酒店 (西安钟鼓楼五路口地铁站店)”的起价是多少?请从下列选项中选择一个回答:\nA. ¥266\nB. ¥303\nC. ¥404\nD. ¥285",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 139,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764054827389_1d6076ed_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面左侧的文件夹列表,当前“收件箱”中有多少封未读邮件?请从下列选项中选择一个回答:\nA. 3\nB. 11\nC. 52\nD. 0",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 361,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765185802040_15059c62_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面上已设置的搜索条件,本次计划的住宿时长和入住人数分别是多少?请从下列选项中选择一个回答:\nA. 1晚,1位成人\nB. 2晚,3位成人\nC. 1晚,3位成人\nD. 2晚,4个人",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 136,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763950109127_a753d53e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将“Why Booking.com?”标题下的功能介绍板块数量与“Offers”标题下的优惠板块数量相加,总和是多少?请从下列选项中选择一个回答:\nA. 4\nB. 5\nC. 6\nD. 7",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 660,
"step_id": 6,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766634102834_1efb136f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在搜索栏下方的快速链接行中,哪个图标的功能是让用户添加新的快捷方式?请从下列选项中选择一个回答:\nA. 带有“文”字样的绿色圆形图标\nB. 带有双色圆点的绿色圆形图标\nC. 带有加号(+)的灰色圆形图标\nD. 带有“JD”字样的红色方形图标",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 668,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766382510821_3390a5ce_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>计算第一个搜索结果(来自用户“Pendlers”的视频帖子)所显示的转发、评论和点赞数之和,总共有多少?请从下列选项中选择一个回答:\nA. 1630\nB. 3931\nC. 5237\nD. 5399",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 915,
"step_id": 5,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766651991211_fac8a889_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕底部导航栏的视觉提示,可以推断出什么信息?请从下列选项中选择一个回答:\nA. 购物车里有2件商品\nB. 用户有2条未读消息\nC. 视频频道有2个新内容\nD. “我的淘宝”页面有2项待办",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 493,
"step_id": 2,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765958927156_19baf14a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据表格中的数据,学生“李四”的总分是多少?请从下列选项中选择一个回答:\nA. 247\nB. 282\nC. 283\nD. 237",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 54,
"step_id": 9,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764211947902_cfc0726b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>请计算位于屏幕底部程序坞(Dock)中所有带有红色通知角标的应用,其角标数字的总和是多少?请从下列选项中选择一个回答:\nA. 4\nB. 5\nC. 6\nD. 2",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 898,
"step_id": 10,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767584842206_225f8090_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>屏幕上所有可见的应用角标(红色通知圆点)中的数字总和是多少?请从下列选项中选择一个回答:\nA. 2,367\nB. 2,241\nC. 2,340\nD. 126",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 877,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766470830035_e404e787_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>从界面信息判断,用户在输入当前搜索词之前,最近一次与“医保跨省”相关的操作发生在什么时候?请从下列选项中选择一个回答:\nA. 刚刚\nB. 1天前\nC. 3天前\nD. 无法判断",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 421,
"step_id": 3,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765938633187_c0907c21_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>对于列表中被高亮选中的歌曲“空空”,根据其右键菜单,下列哪项描述是正确的?请从下列选项中选择一个回答:\nA. 这首歌曲无法被下载。\nB. 这首歌曲已被用户收藏。\nC. 这首歌曲拥有超过2000条评论。\nD. 播放这首歌曲需要VIP会员。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 974,
"step_id": 3,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767688642146_bd56d63f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,用户当前选择了哪种配送方式?请从下列选项中选择一个回答:\nA. 美团快送\nB. 美团专送\nC. 外卖自取\nD. 全部配送",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 844,
"step_id": 7,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766391169735_cf1f762e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果用户将当前选中的商品数量从1件增加到3件,并成功使用了优惠券,那么支付的总金额应为多少?请从下列选项中选择一个回答:\nA. ¥539.4\nB. ¥458.4\nC. ¥152.8\nD. ¥179.8",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 296,
"step_id": 2,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/296-2.png"
}
}
},
{
"input": "<image_1>根据屏幕截图,当前设置的语言是什么?请从下列选项中选择一个回答:\nA. 中文 (简体)\nB. 中文 (繁體)\nC. English\nD. བོད་ཡིག",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 728,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766115318689_27995293_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此电子表格应用的界面中,功能区中当前处于活动状态的选项卡是哪一个?请从下列选项中选择一个回答:\nA. 开始\nB. 插入\nC. 页面\nD. 文件",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 350,
"step_id": 7,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765783178511_d8332405_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>截图中当前选中的单元格是哪一个?请从下列选项中选择一个回答:\nA. A1\nB. B2\nC. C3\nD. A2",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 795,
"step_id": 7,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765451553817_749d241b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,当前显示的日期和星期是?请从下列选项中选择一个回答:\nA. 12月12日 星期五\nB. 1月14日 星期六\nC. 12月12日 星期六\nD. 1月14日 星期五",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 524,
"step_id": 1,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765964109235_152981db_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据此屏幕截图,用户在阅读完“预约须知”后,最主要的下一步操作是什么?请从下列选项中选择一个回答:\nA. 查看预约查询\nB. 点击绿色的“我已阅读,同意预约”按钮\nC. 查看更多选项\nD. 拨打电话联系美术馆",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 294,
"step_id": 3,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/294-3.png"
}
}
},
{
"input": "<image_1>在当前的“机票预订”界面中,如果用户点击“添加返程”按钮,最可能发生什么变化?请从下列选项中选择一个回答:\nA. 出发机场和到达机场的位置会互换\nB. 旅客类型会自动增加一名成人\nC. 行程类型将从“单程”自动切换为“往返”\nD. “查询”按钮会变为灰色不可用",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 284,
"step_id": 4,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/284-4.png"
}
}
},
{
"input": "<image_1>根据截图,“Deals on tech” (科技产品优惠) 板块中未展示以下哪个类别?请从下列选项中选择一个回答:\nA. PC (个人电脑)\nB. Wireless (无线设备)\nC. Software (软件)\nD. Mobile phones (移动电话)",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 485,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765957769792_ae3dedb8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据“价格区间”提供的数据,价格低于368元的商品选项总共占了多少百分比?请从下列选项中选择一个回答:\nA. 60%\nB. 90%\nC. 99%\nD. 100%",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 493,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765959284874_82ed2e4d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此界面中,哪个按钮的功能是发表评论?请从下列选项中选择一个回答:\nA. 左上角的“Cancel”按钮\nB. 右上角的橙色“Send”按钮\nC. 文本框下方的“@”图标\nD. 虚拟键盘上的回车键",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 922,
"step_id": 9,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766651352465_9674b7d8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>比较两个“中转方案推荐”,在南京南换乘的方案比在襄阳东换乘的方案,全程耗时多出多少分钟?请从下列选项中选择一个回答:\nA. 19分钟\nB. 11分钟\nC. 28分钟\nD. 38分钟",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 689,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766128287249_4a58c7f8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>观察截图显示的交易列表,所有可见交易记录的共同点是什么?请从下列选项中选择一个回答:\nA. 所有交易的分类都是购物\nB. 所有交易的金额都低于20元\nC. 所有交易的状态都是“交易成功”\nD. 所有交易的创建时间都在同一天",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 768,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766109535601_373c09bf_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>假设用户有一笔120元的打车订单,并计划使用顶部“您的优惠券即将过期”区域中的一张券。请问使用这些券最多可以节省多少钱?请从下列选项中选择一个回答:\nA. 5元\nB. 20元\nC. 30元\nD. 36元",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 156,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763965792284_2f35d91d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图右上角的用户区域信息,可以推断出以下哪项关于用户状态的描述是正确的?请从下列选项中选择一个回答:\nA. 用户已成功登录\nB. 浏览器正在尝试为用户自动登录\nC. 用户当前未登录浏览器账户\nD. 用户的账户信息已过期",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 106,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764213450189_d6e53467_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,D列的标题是什么?请从下列选项中选择一个回答:\nA. 语文\nB. 数学\nC. 英语\nD. 物理",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 568,
"step_id": 4,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766483378805_0fcad3c5_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,左侧导航栏中当前选中的设置项是什么?请从下列选项中选择一个回答:\nA. 个人资料\nB. 外观\nC. 语言\nD. 下载",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 229,
"step_id": 8,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763628516297_3fe41774_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕右下角任务栏中的信息,截图时的日期是?请从下列选项中选择一个回答:\nA. 12月4日,星期三\nB. 12月4日,星期四\nC. 4月12日,星期三\nD. 4月12日,星期四",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 352,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765176258921_13a02f45_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>观察浏览器左上角的导航箭头,可以推断出关于用户浏览历史的哪项信息?请从下列选项中选择一个回答:\nA. 用户无法后退也无法前进。\nB. 用户可以后退,但无法前进。\nC. 用户可以前进,但无法后退。\nD. 用户既可以后退也可以前进。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 34,
"step_id": 4,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763622142768_4b846177_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“流量消费情况”这个类别下,不包含下列哪项信息?请从下列选项中选择一个回答:\nA. 扩容提速流量\nB. 套餐外流量费\nC. 上网总费用\nD. 免费领钻石VIP",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 369,
"step_id": 4,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765175537919_26695257_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据页面上显示的所有价格和优惠信息,与划线价`¥399.00`相比,当前购买此商品的总优惠金额是多少?请从下列选项中选择一个回答:\nA. ¥34.9\nB. ¥50.0\nC. ¥84.9\nD. ¥99.9",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 280,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/280-3.png"
}
}
},
{
"input": "<image_1>根据截图中第一行可见的视频信息,标题包含“电影”和“大兵”的两个视频,其点赞总数大约是多少?请从下列选项中选择一个回答:\nA. 约1.5万\nB. 约3万\nC. 约13万\nD. 约28万",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 254,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764047360044_b1e2d0e2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将“热门吧”第一列(抗压背锅、bilibili、明日方舟)的总帖子数(文档图标旁的数字)相加,其总和最接近以下哪个数值?请从下列选项中选择一个回答:\nA. 25000万\nB. 35000万\nC. 42000万\nD. 50000万",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 385,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765181315359_b9923f03_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析屏幕上的所有信息,以下哪个推断是**不正确**的?请从下列选项中选择一个回答:\nA. 设备当前的剩余电量低于25%。\nB. 用户可以通过点击屏幕顶部的“视频”标签来专门查看视频类搜索结果。\nC. 此页面上至少有两个不同的UI元素可以用来启动语音输入。\nD. 所有搜索结果严格按照发布时间由近到远进行了排序。",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 421,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765938855471_7d08c881_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据日历和其右侧的“预订须知”,关于预订日期可以得出什么结论?请从下列选项中选择一个回答:\nA. 最早只能从2026年1月开始预订。\nB. 2025年12月的所有周末都无法预订。\nC. 最早可以预订的日期是12月21日。\nD. 付款后必须在9个工作日内才能确认是否预定成功。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 655,
"step_id": 11,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766631327464_3d37097b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>关于这家店铺的“宝贝”、“服务”和“物流”三项评分,以下哪个描述是正确的?请从下列选项中选择一个回答:\nA. 三项评分均高于行业平均水平。\nB. “宝贝”评分与“服务”评分完全相同。\nC. “物流”是三项中评分最高的。\nD. 三项评分都低于4.8分。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 292,
"step_id": 2,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/292-2.png"
}
}
},
{
"input": "<image_1>根据列表信息,哪家餐厅距离用户最远?请从下列选项中选择一个回答:\nA. 小竹签烤肉·纸包鱼\nB. 不肥酒肉馆&椰子鸡\nC. 明洞三喜韩式烤肉专门店\nD. 九春山烤肉",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 861,
"step_id": 9,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766397453846_629131ef_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>关于此商品的配送信息,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 该商品由第三方卖家发货\nB. 现在下单,最快明天可以送达\nC. 该商品不支持修改配送地址\nD. 必须在11月12日之前付款才能发货",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 126,
"step_id": 13,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764222792299_8386b6d8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“段落”设置对话框中,“缩进”部分的“特殊格式(S)”当前被设置为什么?请从下列选项中选择一个回答:\nA. 首行缩进\nB. 悬挂缩进\nC. (无)\nD. 两端对齐",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 939,
"step_id": 5,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767596271413_7e196877_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕右下角的信息,当前显示的日期是?请从下列选项中选择一个回答:\nA. 2025/11/5\nB. 2023/11/5\nC. 2025/5/11\nD. 16:00",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 107,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/107-1.png"
}
}
},
{
"input": "<image_1>在左侧的聊天列表中,当前被选中的是哪一个对话?请从下列选项中选择一个回答:\nA. 文件传输助手\nB. 手电筒\nC. 李家村站点沟通打包群\nD. 微信",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 802,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766385325313_5955411b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕底部的程序坞(Dock)中,总共有几个应用程序图标显示有未读消息角标(红色圆圈)?请从下列选项中选择一个回答:\nA. 1个\nB. 2个\nC. 4个\nD. 5个",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 972,
"step_id": 8,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767520518820_6b4707cb_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“快捷筛选”部分,哪个选项当前处于选中状态?请从下列选项中选择一个回答:\nA. 消费\nB. 转账\nC. 小于5千\nD. 收入",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 759,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766054610246_0d29dc88_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>从界面布局和元素状态来看,用户最有可能接下来执行什么操作?请从下列选项中选择一个回答:\nA. 点击右上角的“导入”按钮\nB. 点击“目的地”搜索框旁的“x”清除已输入内容\nC. 点击蓝色的“下一步”按钮继续规划\nD. 选择推荐地点列表中的“海口”",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 213,
"step_id": 8,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763977496972_ef3a5a3d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>此界面顶部的搜索框旁边有一个带数字的图标,这个数字“14”最可能代表什么?请从下列选项中选择一个回答:\nA. 有14条未读的系统通知\nB. 搜索历史中有14个关键词\nC. 当前页面加载了14条新闻\nD. 浏览器打开了14个标签页",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 921,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766649845422_7af98d11_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,当前选择的配送服务是什么?请从下列选项中选择一个回答:\nA. 普通送\nB. 1对1急送\nC. 收货码\nD. 未开启",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 636,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766568602079_3368513a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据页面信息,如果用户希望入住一家提供“影音房”的酒店,应该选择哪一个?请从下列选项中选择一个回答:\nA. 科逸连锁酒店\nB. 仟佰度酒店\nC. 盒子空间·希舍酒店\nD. 美熙酒店",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 849,
"step_id": 7,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766393570468_43805bf6_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析整个屏幕,总共有多少个设置项点击后会跳转到新的详情页面?请从下列选项中选择一个回答:\nA. 2\nB. 7\nC. 9\nD. 11",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 745,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766116193679_e87926db_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将屏幕上所有可见的应用程序通知角标上的数字相加,得到的总和是多少?请从下列选项中选择一个回答:\nA. 6\nB. 8\nC. 9\nD. 12",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 715,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766384028231_d9d1805d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据表格中的数据,所有来自“DJI大疆创新京东自营旗舰店”的商品总价是多少?请从下列选项中选择一个回答:\nA. 5498.00\nB. 7797.00\nC. 5298.00\nD. 2499.00",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 350,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765782162585_523108be_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>观察浏览器左上角的导航按钮,可以推断出关于当前标签页的什么信息?请从下列选项中选择一个回答:\nA. 页面正在加载中\nB. 这是一个没有浏览历史的新标签页\nC. 用户刚刚从其他页面后退到此页\nD. 用户无法刷新当前页面",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 239,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764231561006_4525b1e7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,用户当前选择的状态是什么?请从下列选项中选择一个回答:\nA. 离开\nB. 隐身\nC. 在线\nD. 自定义",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 380,
"step_id": 3,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765179605472_b020a01e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕左上角的天气小组件,上海当前的天气状况是什么?请从下列选项中选择一个回答:\nA. 晴天\nB. 8°\nC. 多云\nD. 细雨",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 906,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767077569104_8be5a7d9_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,当前页面的标题是什么?请从下列选项中选择一个回答:\nA. 饰品市场\nB. 多普勒蝴蝶刀\nC. 我的库存\nD. BUFF",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 1,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763717850833_92613999_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果一位新客户同时购买一份“【特惠】招牌柠檬茶三选一”和一份“1点点 冰淇淋红茶(大杯)”,与这两件商品的原价总和相比,总共可以优惠多少钱?请从下列选项中选择一个回答:\nA. 11.1元\nB. 12.1元\nC. 1.0元\nD. 19.9元",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 883,
"step_id": 1,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766474242651_183cacf2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕右上角的信息,当前显示的日期是什么?请从下列选项中选择一个回答:\nA. 星期二 12月30日\nB. 星期二 12月12日\nC. 星期二 12月14日\nD. 星期二 12月25日",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 487,
"step_id": 4,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767673032883_3681e05a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,此商品当前的闪购折扣价是多少?请从下列选项中选择一个回答:\nA. ¥79.9\nB. ¥38.9\nC. ¥41\nD. ¥10",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 697,
"step_id": 8,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766134233238_16788127_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,用户当前正在浏览哪个主要内容分类?请从下列选项中选择一个回答:\nA. 电视剧\nB. 电影\nC. 免费\nD. 首页",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 976,
"step_id": 4,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767670199597_342630d6_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图左上角的天气小组件,上海当天的最高温度是多少?请从下列选项中选择一个回答:\nA. 9°\nB. 13°\nC. 14°\nD. 30°",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 706,
"step_id": 3,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767158877731_c8ae630d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕信息,关于用户“多**i”的哪项陈述是正确的?请从下列选项中选择一个回答:\nA. 该用户是第一次购买此商品\nB. 该用户在4天前发布了这条评价\nC. 该用户购买了99.99ml规格的商品\nD. 该用户在初次评价后又进行了追评",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 495,
"step_id": 8,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766138317869_52757cab_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“找医院/医馆”的列表中,哪家机构明确标识为“医保定点”?请从下列选项中选择一个回答:\nA. 三服堂中医馆(五路口馆)\nB. 沃德国济堂中医\nC. 两家机构都是医保定点\nD. 截图中未显示相关信息",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 885,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766474842804_352abbfb_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>观察界面状态,当前弹出的“热门选择”城市列表是用户执行了哪项操作后出现的结果?请从下列选项中选择一个回答:\nA. 点击了“出发城市”输入框\nB. 点击了“单程”单选按钮\nC. 点击了“搜索”按钮\nD. 点击了“到达城市”输入框",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 905,
"step_id": 7,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767077562334_546f9fe2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕顶部的图标网格,哪个功能带有红色的“超低价”标签?请从下列选项中选择一个回答:\nA. 外卖\nB. 团购\nC. 酒店民宿\nD. 闪购",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 136,
"step_id": 1,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763949753894_b5b97302_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据“服务流程”的提示,用户在“填帮买信息”之后,紧接着的下一步操作是什么?请从下列选项中选择一个回答:\nA. 付商品费\nB. 骑手购买配送\nC. 联系骑手\nD. 付跑腿费",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 635,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766569271067_a6d77223_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>观察中间的聊天列表,并排除所有2024年的条目后,哪个对话的最后活动时间是最近的?请从下列选项中选择一个回答:\nA. Video Meeting Assistant\nB. Contacts Assistant\nC. Admin Assistant\nD. Quick Start",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 373,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765780204713_313efc95_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据此界面截图,在左侧导航栏中,当前选中的视图是哪一个?请从下列选项中选择一个回答:\nA. 最近\nB. 星标\nC. 共享\nD. 我的云文档",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 431,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766047681829_0c90d650_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕顶部的状态栏信息,可以推断出手机当前正在执行什么特殊操作?请从下列选项中选择一个回答:\nA. 正在通话\nB. 电池电量低\nC. 正在进行屏幕录制\nD. 处于飞行模式",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 93,
"step_id": 9,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764040100139_58f55c39_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在当前的“排序”对话框中,设置的主要排序关键字是哪一列?请从下列选项中选择一个回答:\nA. 班级\nB. 总分\nC. 次要关键字\nD. 学生",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 568,
"step_id": 6,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766483448803_7c387a01_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据当前界面状态,为什么用户可能无法立即点击“去结算”按钮完成购买?请从下列选项中选择一个回答:\nA. 因为购物车中没有任何已选中的商品。\nB. 因为商品“青鸟川喷罐”暂时缺货。\nC. 因为总金额未达到店铺的最低配送标准。\nD. 因为“模式玩造”的商品必须购买两件或以上。",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 688,
"step_id": 2,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767158976072_980c836f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据右侧的“微博热搜”榜单,排名第一和排名第三的热搜话题,其热度数值相差多少?请从下列选项中选择一个回答:\nA. 21055\nB. 237008\nC. 132650\nD. 317221",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 811,
"step_id": 3,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767665713429_5313643b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析屏幕顶部的预览区域和下方的“显示位置”设置,以下哪个陈述是正确的?请从下列选项中选择一个回答:\nA. 顶部的预览效果展示的是“桌面组件”开启时的通知样式。\nB. 预览中展示的通知功能(熄屏显示)实际上在设置中已被禁用。\nC. 顶部的预览内容是“显示位置”列表中的一个已启用项的视觉示例。\nD. 所有“显示位置”中的项目都必须保持开启状态,无法单独关闭。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 729,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766113886035_0323582c_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面顶部的标签状态,用户当前可以搜索的城市范围是什么?请从下列选项中选择一个回答:\nA. 仅限海外城市\nB. 国内和海外所有城市\nC. 仅限中国大陆城市\nD. 国内城市(包含港澳台地区)",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 852,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766394124949_67bc547b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕顶部的搜索栏中,“+”图标右侧的文字是什么?请从下列选项中选择一个回答:\nA. 公共停车场\nB. 途经点\nC. 完成\nD. 地铁站",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 864,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767078919888_6891d321_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕左上角的天气组件,上海当前的天气状况是什么?请从下列选项中选择一个回答:\nA. 晴朗\nB. 多云\nC. 下雨\nD. 15摄氏度",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 598,
"step_id": 5,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766547413514_bef02d96_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,以下哪个新闻分类标签是可见的?请从下列选项中选择一个回答:\nA. 体育\nB. 历史\nC. 游戏\nD. 健康",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 921,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766650387195_19096def_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>关于此订单中的“团购优惠”,以下哪个描述是正确的?请从下列选项中选择一个回答:\nA. 该优惠将商品总价减少到了 ¥70。\nB. 该优惠是在商品总价 ¥169 的基础上减免了 ¥70。\nC. 用户完成评价后,可以获得 ¥70 的优惠。\nD. 使用“找人代付”功能可以激活 ¥70 的优惠。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 153,
"step_id": 9,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763975230997_9d5152ec_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在今天(12月17日)的所有场次中,哪一个场次不是原版语言放映?请从下列选项中选择一个回答:\nA. 13:20\nB. 14:15\nC. 14:30\nD. 15:00",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 610,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766554499921_5595974e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕底部的键盘中,橙色按钮上的文字是什么?请从下列选项中选择一个回答:\nA. 搜索\nB. 重输\nC. 中/英\nD. 符号",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 321,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764837863388_5558ed92_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕上的信息,该场馆通常在哪一天闭馆?请从下列选项中选择一个回答:\nA. 周一\nB. 周二\nC. 周六\nD. 周日",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 294,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/294-4.png"
}
}
},
{
"input": "<image_1>观察整个界面,什么信息表明用户的上一步操作可能没有成功?请从下列选项中选择一个回答:\nA. Wi-Fi菜单显示了多个带锁的网络\nB. 邮件正文内容是“换三张麻将三缺一哦”\nC. 邮件编辑器上方出现了一个黄色的“发送失败”提示条\nD. 窗口顶部的地址栏显示为“mail.qq.com”",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 276,
"step_id": 2,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/276-2.png"
}
}
},
{
"input": "<image_1>假设一位用户想要以最优惠的方式使用此跑腿服务,根据屏幕上的信息,他应该优先考虑哪两个操作的组合?请从下列选项中选择一个回答:\nA. 使用“汽车送”并隐藏手机号\nB. 充值获得赠券,并在下单时抢购5元立减券\nC. 选择“1对1急送”并使用下单模板\nD. 让骑手在1分钟内接单并选择“帮忙取快递”",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 628,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766565069109_5c3dc0f7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此页面的主导航区域中,当前哪个选项卡被高亮显示为已选中状态?请从下列选项中选择一个回答:\nA. 我的支付宝\nB. 交易记录\nC. 会员保障\nD. 应用中心",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 769,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766388189267_b81f9881_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,“退款详情”部分显示的“退款状态”是什么?请从下列选项中选择一个回答:\nA. 退款成功\nB. 交易自动关闭\nC. 退款处理中\nD. 等待退款",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 896,
"step_id": 9,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766479136799_4cd13eee_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,此应用程序左侧导航菜单中当前被选中的项目是什么?请从下列选项中选择一个回答:\nA. 精选\nB. 播客\nC. 我喜欢的音乐\nD. 下载管理",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 253,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763620936661_49c6d84f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据此屏幕截图,用户在搜索框中输入了什么文本?请从下列选项中选择一个回答:\nA. 口红\nB. kouhong\nC. All\nD. 口红 香奈儿",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 485,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765958137905_bf3abb40_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果用户在“特殊格式” (Special) 下拉菜单中选择“首行缩进” (First line),然后点击“确定”,“预览” (Preview) 区域中以“The process of promotion...”开头的段落将会发生什么视觉变化?请从下列选项中选择一个回答:\nA. 只有该段落的第一行会向右缩进。\nB. 该段落的所有行都会向右缩进。\nC. 除了第一行之外的所有行都会向右缩进。\nD. 该段落中的垂直行间距会增加。",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 454,
"step_id": 7,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766052226786_22db5bff_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>请仔细分析搜索框下方的建议列表。在所有包含艺术家姓名的搜索建议中,总共提及了多少位不同的艺术家或团体?请从下列选项中选择一个回答:\nA. 8\nB. 9\nC. 10\nD. 11",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 242,
"step_id": 8,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763616239583_fba09542_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据此界面的功能布局,点击“交易明细”后,最有可能发生什么?请从下列选项中选择一个回答:\nA. 显示完整的银行卡号\nB. 跳转到客服聊天界面\nC. 弹出一个输入支付密码的窗口\nD. 进入一个列有近期收支记录的新页面",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 764,
"step_id": 7,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766055272189_fe89e55e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此界面中,哪个筛选条件已被激活并用于排序或过滤列表?请从下列选项中选择一个回答:\nA. 附近\nB. 全部分类\nC. 神券膨胀\nD. 店好评优先",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 857,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766398931570_0bbdb5a8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕右下角的信息,当前显示的日期是?请从下列选项中选择一个回答:\nA. 2025年12月5日\nB. 2023年12月10日\nC. 2025年12月10日\nD. 14点21分",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 448,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765947884555_5d4fe6c1_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在显示的“打开”文件对话框中,用户当前正在浏览哪个文件夹的内容?请从下列选项中选择一个回答:\nA. 下载\nB. 图库\nC. 图片\nD. 主文件夹",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 787,
"step_id": 6,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765449723570_47286937_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕上显示的三家酒店中,哪一项服务是它们都提供的?请从下列选项中选择一个回答:\nA. 机器人服务\nB. 免费停车场\nC. 住就送·25元券包\nD. 近地铁",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 139,
"step_id": 7,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764054940114_5c3206e7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,当前高亮选中的医疗科室是什么?请从下列选项中选择一个回答:\nA. 皮肤科\nB. 妇产科\nC. 消化内科\nD. 更多",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 653,
"step_id": 5,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766643144992_606abc74_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>关于这家酒店的住客评价信息,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 酒店的员工服务评分为1分。\nB. 酒店总共有10条住客点评。\nC. 目前只有一位住客给出了评价。\nD. 地图显示酒店距离市中心很远。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 660,
"step_id": 14,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767081544648_3bd913f3_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕底部的程序坞(Dock)中,哪个应用程序的图标上有一个红色角标,提示有待处理的通知或更新?请从下列选项中选择一个回答:\nA. App Store\nB. 日历\nC. 信息\nD. 系统设置",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 451,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766048482520_4ec9c249_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果将桌面上的所有图标分为三类:文件夹、应用程序/安装包、以及文档文件,那么哪一类的数量最多?请从下列选项中选择一个回答:\nA. 文件夹\nB. 应用程序/安装包\nC. 文档文件\nD. 文件夹和应用程序/安装包的数量相同",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 42,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764046976935_06c70ba2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面当前状态推断,右下角的“发送(S)”按钮呈灰色不可用状态的最可能原因是什么?请从下列选项中选择一个回答:\nA. 文件尚未完全上传成功。\nB. 当前网络连接已中断。\nC. 聊天对象“L”不在线。\nD. 文本输入框内没有内容。",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 698,
"step_id": 8,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766118358622_cbc18d96_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面上的元素判断,以下关于当前用户状态的描述哪项最有可能为真?请从下列选项中选择一个回答:\nA. 用户已将商品加入购物车。\nB. 用户正在与卖家进行实时聊天。\nC. 用户尚未登录账户。\nD. 用户已为商品申请了报价。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 478,
"step_id": 2,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765956459430_ea59ef18_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据右侧的“草稿参数”面板,以下哪个关于项目设置的描述是正确的?请从下列选项中选择一个回答:\nA. “浮点链路”功能已开启。\nB. “代理模式”功能已开启。\nC. “自由层级”功能已开启。\nD. “导入方式”被设置为“移动到工程位置”。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 705,
"step_id": 3,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767678540547_882433d2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析右侧的用户信息面板,如果用户希望最大化抵扣金额,不考虑使用优惠券,用户当前可用的红包和淘金币加起来总价值是多少?请从下列选项中选择一个回答:\nA. ¥163.00\nB. ¥183.65\nC. ¥190.00\nD. ¥210.65",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 456,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765950067821_bc4ed63f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在界面左侧的导航栏中,“发布”选项的正下方是哪一个选项?请从下列选项中选择一个回答:\nA. 发现\nB. 通知\nC. 我\nD. 更多",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 981,
"step_id": 4,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1768291246595_a0a1f71b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据“万能帮买”部分的图标和文字,以下哪一项服务是该应用提供的商品分类?请从下列选项中选择一个回答:\nA. 酒水饮料\nB. 鲜花绿植\nC. 母婴用品\nD. 宠物生活",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 635,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766569244965_4171d27f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,状态栏中显示的日期和星期是什么?请从下列选项中选择一个回答:\nA. 星期四,12月25日\nB. 星期四,10月13日\nC. 星期三,12月25日\nD. 星期四,12月13日",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 824,
"step_id": 1,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766648467204_c9b56bb4_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>假设“券后价”是经过“官方立减”优惠后的价格,那么左上角的“MEDM 个性天使”这件商品,在享受“官方立减”之前的原始价格是多少?请从下列选项中选择一个回答:\nA. ¥139\nB. ¥162\nC. ¥185\nD. ¥387",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 716,
"step_id": 9,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766124108679_596df664_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>结合截图右下角的系统日期,关于图中大型横幅广告所示的活动,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 活动尚未开始\nB. 活动已经结束\nC. 活动正在进行中\nD. 活动日期信息不完整,无法判断",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 751,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766053485243_32e44df2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析列表中的所有条目和底部的总数提示,该通讯录中有多少个被计为“朋友”的个人联系人?请从下列选项中选择一个回答:\nA. 1\nB. 2\nC. 3\nD. 4",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 79,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/79-3.png"
}
}
},
{
"input": "<image_1>从屏幕上弹出的菜单可以判断,当前商品列表是依据什么条件进行排序的?请从下列选项中选择一个回答:\nA. 离我最近\nB. 价格\nC. 信用排序\nD. 综合",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 491,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766136976633_2fb1ac88_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析界面顶部的商品总数和底部的合计金额,可以推断出关于购物车状态的最准确描述是什么?请从下列选项中选择一个回答:\nA. 购物车内的265件商品总价值为0元。\nB. 尽管购物车里有265件商品,但当前没有勾选任何一件商品进行结算。\nC. 所有商品都已失效,因此无法结算。\nD. 用户必须先使用130元的消费券才能看到合计金额。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 462,
"step_id": 4,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765952584659_d8807a77_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据当前打开的备忘录内容,如果会议准时在“今天”列表所示的17:30开始,并且严格按照各项议程的计划时间进行,会议将在何时结束?请从下列选项中选择一个回答:\nA. 17:50\nB. 18:00\nC. 18:10\nD. 18:15",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 980,
"step_id": 11,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767163818032_93cc3d8b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在左侧的聊天列表中,哪一个联系人或群组有且仅有一条未读消息?请从下列选项中选择一个回答:\nA. 大熊\nB. 腾讯新闻\nC. 茶茶 @茶百道\nD. 公众号",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 256,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763627305991_7f4ad50b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将第一篇帖子底部的可见互动数据(转发、评论、点赞)全部相加,其总和是多少?请从下列选项中选择一个回答:\nA. 92\nB. 232\nC. 237\nD. 72237",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 918,
"step_id": 3,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766481920587_b7df7ad4_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,当前打开的电子表格文件的名称是什么?请从下列选项中选择一个回答:\nA. 手机销量.xlsx\nB. 找稻壳模板\nC. WPS Office\nD. Sheet1",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 55,
"step_id": 11,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/55-11.png"
}
}
},
{
"input": "<image_1>关于来自“blog.csdn.net”的访问记录,以下哪项陈述是正确的?请从下列选项中选择一个回答:\nA. 该网站在16:16被访问了两次。\nB. 该网站的所有访问记录都集中在今天。\nC. 用户总共访问了该网站两次。\nD. 该网站最新的访问记录是“Spring IOC-CSDN博客”。",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 427,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766047220208_8b42d049_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,左侧导航栏中当前选中的功能是什么?请从下列选项中选择一个回答:\nA. 收信\nB. 通讯录\nC. 写信\nD. 收件箱",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 64,
"step_id": 2,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763617142080_aace6969_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,下列哪个服务图标上直接标明了优惠活动?请从下列选项中选择一个回答:\nA. 顺风车\nB. 代驾\nC. 外卖\nD. 电影演出",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 553,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766024667856_3f8fe0d2_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕顶部的“万能帮买”部分,用户可以执行的主要操作是什么?请从下列选项中选择一个回答:\nA. 搜索全城美食店\nB. 查看个人订单历史\nC. 填写任意想买的商品,让骑手代为购买\nD. 直接进入日用百货分类",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 633,
"step_id": 2,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766566264956_8d271f3f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>从截图中可以看出,在用户发送“小孩用哪种布洛芬?”这条消息后,系统正处于什么状态?请从下列选项中选择一个回答:\nA. 等待用户输入下一个问题\nB. 网络连接已中断\nC. 正在生成回复内容\nD. 已成功发送回复",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 648,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766628796478_fcad4e57_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图中的信息,关于该商品的售后服务,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 商品支持48小时无理由退换\nB. 商品不支持因过敏问题退货\nC. 商品承诺如果发现非正品会进行十倍赔偿\nD. 商品需要在购买后24小时内发货",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 495,
"step_id": 6,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766137810752_ad6ae544_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>屏幕上完整可见的交易记录中,有多少项被归类为“Food”?请从下列选项中选择一个回答:\nA. 2\nB. 3\nC. 4\nD. 5",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 763,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766114076228_c82b93fb_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕上显示的价格信息,推算出此双人餐被遮挡的原始“零售价”是多少?请从下列选项中选择一个回答:\nA. 137元\nB. 96元\nC. 156元\nD. 144元",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 860,
"step_id": 8,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767080756973_eb45bb33_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,当前页面正在搜索什么商品?请从下列选项中选择一个回答:\nA. 黄花鱼\nB. 小黄鱼\nC. 黄鱼片\nD. 冷冻鱼",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 507,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765961726682_85dc1b10_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕底部的程序坞(Dock)中,有多少个应用程序图标带有表示未读通知的红色角标?请从下列选项中选择一个回答:\nA. 1\nB. 2\nC. 3\nD. 9",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 664,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766639020689_e648f1b3_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据“备忘录”应用窗口中的信息,如果用户将“备忘录”文件夹中的一篇笔记移入“最近删除”,那么“最近删除”文件夹中将包含多少篇笔记?请从下列选项中选择一个回答:\nA. 8\nB. 9\nC. 10\nD. 11",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 936,
"step_id": 2,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767161078115_a10b7cc0_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合屏幕上可见的信息,最顶部的两篇内容(“恢复神招~”和“贵阳耗资27亿...”)总共获得了多少个“喜欢”?请从下列选项中选择一个回答:\nA. 19\nB. 39\nC. 57\nD. 58",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 497,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765960133927_bc104f07_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>仅根据“最近”文件列表中“昨天”分类下的可见文件,所有PDF文档的总大小约为多少?请从下列选项中选择一个回答:\nA. 8.8 MB\nB. 18.2 MB\nC. 21.7 MB\nD. 12.9 MB",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 973,
"step_id": 7,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767596655447_13b3ba2d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>关于该房源的预订和入住信息,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 该房源最多可容纳2人入住。\nB. 预订后可以在30分钟内免费取消。\nC. 房源提供两张相同尺寸的双人床。\nD. 页面显示的价格为连续两晚的总价。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 143,
"step_id": 6,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763974497771_b8f1e307_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面中显示的查询条件,以下关于“Query”(查询)按钮状态的描述哪个最准确?请从下列选项中选择一个回答:\nA. 按钮被禁用,因为备注(Remark)字段是空的。\nB. 按钮被禁用,因为日期范围不合法。\nC. 按钮处于可点击状态,可以立即执行一次新的查询。\nD. 点击按钮后会弹出高级查询(Advanced Query)窗口。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 771,
"step_id": 15,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766383344302_3e244858_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据当前筛选结果,符合条件的基金有多少只?请从下列选项中选择一个回答:\nA. 925只\nB. 5只\nC. 25只\nD. 3只",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 203,
"step_id": 9,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763965043558_1278517c_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“账单管理”部分,哪个功能当前处于开启状态?请从下列选项中选择一个回答:\nA. 账单分类\nB. 标签和备注\nC. 计入收支\nD. 申请电子回单",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 899,
"step_id": 9,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766479236334_9ca70487_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将“服务/折扣”区域所有可见的选项标签数量与“品牌”区域所有可见的选项标签数量相加,总和是多少?请从下列选项中选择一个回答:\nA. 27\nB. 28\nC. 29\nD. 30",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 482,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765958685951_e48325e9_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果一个三人家庭需要购买一张商务座和两张一等座车票,根据截图显示的信息,他们是否能够成功购买,如果可以,总票价是多少?请从下列选项中选择一个回答:\nA. 可以,总价为 ¥5947.0\nB. 可以,总价为 ¥5954.0\nC. 不可以,因为一等座余票不足\nD. 可以,总价为 ¥4457.0",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 281,
"step_id": 9,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/281-9.png"
}
}
},
{
"input": "<image_1>在当前预览的第一页上,“传媒与艺术设计学院”共出现了多少次?请从下列选项中选择一个回答:\nA. 3次\nB. 4次\nC. 5次\nD. 6次",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 567,
"step_id": 11,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766485567709_9a77bdd9_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>用户当前在界面中设置的预约用车时间是?请从下列选项中选择一个回答:\nA. 11月10日 10点40分\nB. 11月11日 11点45分\nC. 11月12日 12点50分\nD. 11月10日 11点35分",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 159,
"step_id": 3,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763954701840_2dccb838_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕底部程序坞(Dock)中各图标的状态,可以推断出下列哪项描述是正确的?请从下列选项中选择一个回答:\nA. 系统设置中有4项待处理通知。\nB. App Store 和系统设置共有5个待办事项或通知。\nC. 邮件应用收到了新邮件。\nD. 所有应用都没有待处理的通知。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 706,
"step_id": 10,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767159329423_08ffb8ce_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在顶部的快捷方式栏中,紧邻“Microsoft 365”图标右侧的是哪个网站的快捷方式?请从下列选项中选择一个回答:\nA. 京东热卖\nB. 淘宝热卖\nC. 百度文库\nD. 抖音",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 928,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767160606057_91f3359e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,如果用户当前想寻找专为儿童设计的感冒药,最快捷的操作是点击哪个选项?请从下列选项中选择一个回答:\nA. 在键盘上输入“儿童”并搜索\nB. 点击清除按钮后,重新输入“儿童感冒灵”\nC. 点击搜索框右侧的“搜索”按钮\nD. 点击搜索建议中的“999感冒灵儿童”",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 640,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767671754159_2c9c495d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>截图底部显示了一个限时优惠通知,关于此优惠的描述哪个是正确的?请从下列选项中选择一个回答:\nA. 该优惠券总价值为650元,且没有使用时间限制。\nB. 用户可以获得2张面值各为650元的9折券。\nC. 该优惠券将在1天7小时后过期,且仅限88VIP用户。\nD. 点击“去使用”后,用户会直接购买价值650元的商品。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 118,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764038082472_f1903ba8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据左侧的会话列表,以下哪个联系人或服务的最新消息时间是最近的?请从下列选项中选择一个回答:\nA. L\nB. 文件传输助手\nC. 腾讯新闻\nD. 微信团队",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 72,
"step_id": 5,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763712025793_c52a31bb_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>结合页面显示的“上次登录时间”和操作系统任务栏显示的时间,推断出从上次登录到当前截图时刻,大约经过了多长时间?请从下列选项中选择一个回答:\nA. 不到1小时\nB. 大约3个小时\nC. 超过5个小时\nD. 超过1天",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 769,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766388134015_20ec410c_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在用户输入“哔哩哔哩”后,屏幕上总共显示了多少个可供选择的搜索或访问建议(不包括键盘上的文字联想)?请从下列选项中选择一个回答:\nA. 5\nB. 2\nC. 7\nD. 8",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 926,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767160719883_dd3b62aa_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在屏幕底部的标签栏中,当前选中的是哪个标签?请从下列选项中选择一个回答:\nA. 新闻\nB. 视频\nC. 关注\nD. 我的",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 920,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766481782338_8f05e128_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果以当前优惠价同时购买一个“塔斯汀香辣鸡腿中”和一个“茉莉奶绿中杯”,与原价相比总共节省了多少钱?请从下列选项中选择一个回答:\nA. 6.8元\nB. 18.8元\nC. 25.6元\nD. 15.2元",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 562,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766143515953_ba47283a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>从今天(日历上红色圆圈标注的日期)算起,到下一个月的第一个星期五,总共需要经过多少天?请从下列选项中选择一个回答:\nA. 17天\nB. 18天\nC. 24天\nD. 25天",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 445,
"step_id": 5,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766048066656_331a7705_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据页面中部的“11.11”促销横幅,用户可以领取的“大额神券”的使用条件是什么?请从下列选项中选择一个回答:\nA. 订单金额满8元即可使用\nB. 订单金额满150元可减免8元\nC. 订单金额满158元才能使用\nD. 无门槛直接减免8元",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 185,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763960747204_53feaf1b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕右上角显示的信息,当前的日期和星期是?请从下列选项中选择一个回答:\nA. 星期三,12月24日\nB. 星期二,12月23日\nC. 星期三,10月15日\nD. 星期四,12月25日",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 906,
"step_id": 6,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767078115760_4fa0b2c5_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据“Query Results”表格中的数据,在2025年12月1日那笔交易发生之前,该账户的余额是多少?请从下列选项中选择一个回答:\nA. 3.96元\nB. 4.76元\nC. 0.80元\nD. 3.16元",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 771,
"step_id": 10,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766382993948_c1ea9275_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将此macOS桌面上所有应用程序图标上显示的未读通知总数,与网页中显示的付款账户余额的整数部分进行比较,可以得出什么结论?请从下列选项中选择一个回答:\nA. 两者数值完全相等。\nB. 未读通知总数大于账户余额的整数部分。\nC. 账户余额的整数部分是未读通知总数的80倍以上。\nD. 账户余额的整数部分减去未读通知总数恰好等于400。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 758,
"step_id": 5,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767075174429_c8e7e036_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在「C.」的专属好歌列表中,以下关于歌曲及其关联信息的描述,哪一项是正确的?请从下列选项中选择一个回答:\nA. 列表中获赞数最高的歌曲带有“电音榜历史上榜”标签。\nB. 带有“1个好友关注歌手”标签的歌曲,其正上方是一首获赞数超过百万的歌曲。\nC. 列表中唯一一首当前正有人收听的歌曲,其获赞数超过了40万。\nD. 用户已点赞的歌曲与未点赞的歌曲数量相同。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 713,
"step_id": 8,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766123873414_f2ad4518_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>假设用户将当前文章仅添加到“我的收藏夹”,然后又创建了一个新的收藏夹并将该文章也添加进去。完成后,该用户所有收藏夹中的内容总数将是多少?请从下列选项中选择一个回答:\nA. 16\nB. 17\nC. 18\nD. 19",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 90,
"step_id": 6,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/90-6.png"
}
}
},
{
"input": "<image_1>观察屏幕底部的键盘,蓝色的按键上显示的文字是什么?请从下列选项中选择一个回答:\nA. 完成\nB. 输入\nC. 搜索\nD. 空格",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 324,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764567322238_b43c7fd4_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将截图中三个主要列表项(冰淇淋、西梅饮、卷面皮)的划线“原价”相加,总金额是多少?请从下列选项中选择一个回答:\nA. ¥7.88\nB. ¥16.90\nC. ¥14.91\nD. ¥24.77",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 148,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763711830615_b2f5689c_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据主播“数老板的小玩偶”发布的信息,下列哪一个不是他建议的送礼对象?请从下列选项中选择一个回答:\nA. 学生\nB. 朋友\nC. 同事\nD. 女友",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 400,
"step_id": 3,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765425287834_afc7b51e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据热搜榜单显示,排名第一的话题热度值与排名第三的话题热度值相差大约多少万?请从下列选项中选择一个回答:\nA. 116.9万\nB. 75.8万\nC. 182.7万\nD. 290.0万",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 332,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764742206244_461fcab1_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据此界面,用户最有可能通过执行什么操作来获得“5折”优惠?请从下列选项中选择一个回答:\nA. 购买150元的通勤套餐\nB. 输入一个用于上下班通勤的目的地\nC. 使用“代驾”服务\nD. 领取“跨年惊喜好礼”红包",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 863,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767677879766_690f0b89_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,设备上已保存了多少个网络?请从下列选项中选择一个回答:\nA. 0 个\nB. 1 个\nC. 2 个\nD. 3 个",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 277,
"step_id": 3,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/277-3.png"
}
}
},
{
"input": "<image_1>观察界面底部的数量选择器,为什么减号(-)按钮呈现为灰色不可点击的状态?请从下列选项中选择一个回答:\nA. 因为该商品库存不足\nB. 因为用户尚未登录账户\nC. 因为当前已选数量为0,无法再减少\nD. 因为必须先将商品加入采购车才能修改数量",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 837,
"step_id": 7,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766391127534_7a0252ab_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合截图中的信息,关于该用户的账户资产状况,以下哪项描述是正确的?请从下列选项中选择一个回答:\nA. 用户有可用的红包,但钱包里没有钱。\nB. 用户的钱包余额和红包数量均为零。\nC. 用户已参与充值赠券活动。\nD. 用户需要先完成实名认证才能查看其余额。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 180,
"step_id": 5,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763961974472_87f931d6_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕布局,以下哪一项是一个应用程序文件夹,而不是单个应用程序?请从下列选项中选择一个回答:\nA. 照片美化\nB. 小红书\nC. 闲鱼\nD. Keep",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 695,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766132236040_dc3fb19a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在桌面上,“微信”图标的右侧是哪个图标?请从下列选项中选择一个回答:\nA. 抖音\nB. QQ\nC. 三傻大闹宝莱坞\nD. 桌面快捷方式",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 793,
"step_id": 9,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765450723482_c61a1246_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果用户想一次性购买当前已选票档的最高限购数量,他需要支付的总金额是多少?请从下列选项中选择一个回答:\nA. 1299元\nB. 2598元\nC. 5196元\nD. 6495元",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 290,
"step_id": 5,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/290-5.png"
}
}
},
{
"input": "<image_1>根据顶部的地址栏和左侧的导航窗格,此窗口目前正在显示哪个位置的内容?请从下列选项中选择一个回答:\nA. Desktop\nB. This PC\nC. Quick access\nD. Local Disk (C:)",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 338,
"step_id": 3,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765423257450_f538d87f_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据当前界面的高亮状态和总价,可以判断用户选择了哪项服务?请从下列选项中选择一个回答:\nA. 普通帮送\nB. 1对1急送\nC. 省心送保价服务\nD. 在线支付",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 882,
"step_id": 10,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766473055590_1b2a4120_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>聊天记录中显示的倒数第二条消息的时间戳,与Windows任务栏显示的当前系统时间相差多少分钟?请从下列选项中选择一个回答:\nA. 0 分钟\nB. 16 分钟\nC. 26 分钟\nD. 86 分钟",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 73,
"step_id": 6,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763714747604_4c591020_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此界面中,哪个按钮用于发送该电子邮件?请从下列选项中选择一个回答:\nA. Reply\nB. Cancel\nC. Send\nD. Cc/Bcc",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 368,
"step_id": 7,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765424260185_3f0c1bd0_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>假设用户领取并使用了页面上所有可用的优惠,购买此商品的最低价格是多少?请从下列选项中选择一个回答:\nA. ¥21\nB. ¥19.9\nC. ¥14.9\nD. ¥16",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 295,
"step_id": 5,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/295-5.png"
}
}
},
{
"input": "<image_1>根据截图,底部导航栏中当前选中的是哪个功能?请从下列选项中选择一个回答:\nA. 微信\nB. 通讯录\nC. 发现\nD. 我",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 78,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/78-2.png"
}
}
},
{
"input": "<image_1>根据页面顶部的搜索条件,用户计划的住宿总时长是多久?请从下列选项中选择一个回答:\nA. 2晚\nB. 3晚\nC. 4天\nD. 1间房",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 654,
"step_id": 12,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766629738195_3cd781b1_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合“问大家”和“评价”两个板块的信息,该医院页面上显示的用户互动内容(提问与评价)总数是多少?请从下列选项中选择一个回答:\nA. 113\nB. 378\nC. 265\nD. 491",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 182,
"step_id": 8,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763963881613_34ba22d7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果一位用户在“百亿补贴”区同时购买一份“甲乙流检测试剂”和一瓶“海露滴眼液”,相较于商品原价,总共可以节省多少钱?请从下列选项中选择一个回答:\nA. ¥11.6\nB. ¥55.1\nC. ¥66.7\nD. ¥71.3",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 649,
"step_id": 1,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766628396013_12da964e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>如果用户选择“自取”服务并购买一份截图中的套餐,最终需要支付的金额是多少?请从下列选项中选择一个回答:\nA. ¥13.7\nB. ¥10.5\nC. ¥3.2\nD. ¥16.9",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 842,
"step_id": 5,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766400387552_3f26f38e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>将“H酒店”的“立减”金额与“感受主题设计师酒店”的“立减”金额相加,总额是多少?请从下列选项中选择一个回答:\nA. ¥241\nB. ¥253\nC. ¥170\nD. ¥264",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 136,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763950170931_46d62cd7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析屏幕顶部的导航栏和状态栏信息,可以推断出什么?请从下列选项中选择一个回答:\nA. 用户正处于飞行模式,但手动开启了5G网络。\nB. 用户正在从“微博”的应用内设置返回到系统主屏幕。\nC. 这是一个系统级别的设置页面,用户从“微博”的应用设置主页进入了“无线数据”子页面。\nD. 手机电量为96%,但由于未连接电源,电量正在消耗中。",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 996,
"step_id": 7,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767671073112_55eaf1db_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕信息,在“果C美式”分类下,哪款饮品明确标注了“0脂”特性?请从下列选项中选择一个回答:\nA. 橙C美式\nB. 柚C美式\nC. 柠C美式\nD. 多肉葡萄咖",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 299,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/299-4.png"
}
}
},
{
"input": "<image_1>根据截图,页面显示的浏览历史是哪个时间范围内的?请从下列选项中选择一个回答:\nA. 过去3个月\nB. 过去1个月\nC. 过去6个月\nD. 全部历史记录",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 471,
"step_id": 4,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765955403735_21959e6b_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,当前页面的标题是什么?请从下列选项中选择一个回答:\nA. 清理缓存\nB. 正在计算\nC. 了解缓存\nD. 可清理",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 232,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763694491589_ab68a797_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据顶部“关注”按钮的视觉状态,可以推断出用户与这位内容发布者之间最可能的关系是什么?请从下列选项中选择一个回答:\nA. 用户已经关注了该发布者\nB. 用户尚未关注该发布者\nC. 用户已将该发布者屏蔽\nD. 无法从当前界面判断",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 244,
"step_id": 12,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763971341337_1314dc87_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,用户在设置完出发点后,下一步最主要的操作是什么?请从下列选项中选择一个回答:\nA. 输入目的地\nB. 查看订单\nC. 重新定位当前位置\nD. 查看热门问题",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 866,
"step_id": 4,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766399741821_1553b04c_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图中为10月19日(星期日)提供的可预约时间段,当天可预约的总时长是多少?请从下列选项中选择一个回答:\nA. 9小时29分钟\nB. 9小时30分钟\nC. 8小时30分钟\nD. 9小时59分钟",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 288,
"step_id": 10,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/288-10.png"
}
}
},
{
"input": "<image_1>比较页面上可见的前两家酒店(北京亚洲大酒店和北京希尔顿酒店),它们的评价条数相差多少?请从下列选项中选择一个回答:\nA. 399\nB. 1522\nC. 5062\nD. 291",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 138,
"step_id": 7,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/138-7.png"
}
}
},
{
"input": "<image_1>在显示的2025年12月日历中,哪一天的票价最高?请从下列选项中选择一个回答:\nA. 12月16日\nB. 12月19日\nC. 12月25日\nD. 12月31日",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 665,
"step_id": 9,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766640553621_48dd6574_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面中的视觉提示,哪个功能模块有明确数量的未处理事项需要用户查看?请从下列选项中选择一个回答:\nA. Huabei\nB. 理财 (Fortune)\nC. 消息 (Message)\nD. 商家服务 (Merchant Services)",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 736,
"step_id": 2,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766114408123_7e35edbc_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在“限时优惠”区域中,价格最高的演出(以“¥...起”为准)与拥有最低折扣(即数字最小的折扣)的演出,它们的起始价格总和是多少?请从下列选项中选择一个回答:\nA. ¥159.9\nB. ¥17.7\nC. ¥150\nD. ¥18.8",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 875,
"step_id": 3,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766470604645_f671dce0_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>在此“折扣与服务”筛选页面中,哪个选项当前已被用户激活?请从下列选项中选择一个回答:\nA. 本地退货\nB. 国际免邮\nC. 综合排序\nD. 中国大陆境内免运费",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 838,
"step_id": 11,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766646636798_6e5b0966_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图中的筛选条件,用户当前正在查看什么样的交易记录?请从下列选项中选择一个回答:\nA. 所有担保交易的记录\nB. 最近一周内发生的退款记录\nC. 所有交易成功的记录\nD. 金额为78元的即时到账记录",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 752,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766053466609_fdafa847_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,以下哪个应用程序的图标显示在主屏幕上?请从下列选项中选择一个回答:\nA. 支付宝\nB. 微博\nC. 抖音\nD. 淘宝",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 96,
"step_id": 1,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763718356009_d1e0cb7a_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据页面中间搜索结果列表显示的时间信息,下列哪篇文章是相对最近发布的?请从下列选项中选择一个回答:\nA. 按灾配“包”新版《家用防灾应急包》11月1日起实施\nB. 11月11日娱乐热点总结\nC. 香港大埔火灾造成12名消防员受伤\nD. 82岁罗马仕继承人被骗150亿美元元细节曝光",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 315,
"step_id": 6,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1764831347488_5d738204_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>以下哪个应用程序,既在桌面上显示为快捷方式,又被固定在了任务栏上?请从下列选项中选择一个回答:\nA. Firefox\nB. Google Chrome\nC. Microsoft Edge\nD. 文件资源管理器",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 27,
"step_id": 1,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1763632829313_f8015ca7_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据界面元素的交互设计,下列哪个设置项的功能是直接在当前页面切换状态,而不是导航到新页面?请从下列选项中选择一个回答:\nA. 新版视觉风格\nB. 家长控制模式\nC. 用户保护中心\nD. 新消息通知",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 742,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766121084955_4812e53d_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>对于用户“阿强努力不摸鱼”发布的这条内容,其显示的转发、评论和点赞的总互动数是多少?请从下列选项中选择一个回答:\nA. 288\nB. 367\nC. 111\nD. 383",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 398,
"step_id": 6,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765781208022_d4279922_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>结合顶部菜单栏显示的日期和桌面上的文件,可以推断出哪个文件是在当天创建或修改的?请从下列选项中选择一个回答:\nA. 名为“...3.45.54”的文件夹\nB. 名为“...10.17.51”的文件夹\nC. 名为“...13.23.05”的文件夹\nD. 名为“..._img_v3_0...”的JPG图片",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 942,
"step_id": 3,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1767081256062_da7ce392_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析地图上的路线、距离提示和用户位置,应用建议用户立即执行什么操作?请从下列选项中选择一个回答:\nA. 在原地“潘蔓美甲”等候车辆\nB. 步行约203米前往“天洋·翠堤湾-南门”\nC. 点击右侧“添加”按钮以邀请朋友\nD. 取消订单,因为匹配需要超过6秒",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 560,
"step_id": 6,
"devices": "iOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766719956253_097a86c0_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>结合屏幕底部显示的商家信息(距离456m)和当前展开的“附近”菜单,如果用户点击“500m”这个距离选项,预期会发生什么?请从下列选项中选择一个回答:\nA. 该商家列表项会因为不满足新的筛选条件而被过滤掉。\nB. 该商家列表项将仍然显示,因为它在500米范围之内。\nC. 界面将只显示这一个商家,因为它是唯一符合条件的。\nD. 该商家列表项的价格会根据距离筛选而发生变化。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 544,
"step_id": 3,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766023623980_3292ba2e_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>综合分析状态栏中的所有图标和数字,以下哪项陈述最准确地描述了手机的当前状态?请从下列选项中选择一个回答:\nA. 手机已连接Wi-Fi,信号良好,电量即将耗尽,并正在录屏。\nB. 手机使用双4G网络,其中一张卡信号满格,电量低于20%,并正在录屏。\nC. 手机仅使用单张SIM卡,信号较弱,电量为19%,且有未接来电。\nD. 手机正在充电,电量为19%,使用4G网络,并正在进行视频通话。",
"target": "B",
"extra_data": {
"ability": "page_understanding",
"task_id": 729,
"step_id": 1,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1766113571232_22449912_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕截图,名为“数理化.xlsx”的文件属于哪种类型?请从下列选项中选择一个回答:\nA. 电子表格\nB. PDF文档\nC. 应用程序\nD. 文本文档",
"target": "A",
"extra_data": {
"ability": "page_understanding",
"task_id": 348,
"step_id": 1,
"devices": "macOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765422644995_d8b40fa8_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据截图,左侧主导航菜单中当前处于激活状态的是哪个选项?请从下列选项中选择一个回答:\nA. 发现\nB. 发布\nC. 通知\nD. 我",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 386,
"step_id": 2,
"devices": "Windows",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765181978741_a1b00be1_video_capture_frame.jpeg"
}
}
},
{
"input": "<image_1>根据屏幕顶部的导航栏,当前选定的内容分类是什么?请从下列选项中选择一个回答:\nA. 精选\nB. 团购\nC. 商城\nD. 推荐",
"target": "D",
"extra_data": {
"ability": "page_understanding",
"task_id": 6,
"step_id": 2,
"devices": "Android",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/6-2.png"
}
}
},
{
"input": "<image_1>根据主播在评论区的说明,如果一个5岁以下的小朋友想购买一个玩具,应该如何下单?请从下列选项中选择一个回答:\nA. 私信主播进行购买\nB. 点击男孩款链接\nC. 都是通过1号链接下单\nD. 等待主播提供儿童款专属链接",
"target": "C",
"extra_data": {
"ability": "page_understanding",
"task_id": 400,
"step_id": 4,
"devices": "iPadOS",
"url": {
"<image_1>": "screenshots/abilities/page_understanding/1765425885385_3cc8bfbb_video_capture_frame.jpeg"
}
}
}
]
} |