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 | package Torello.Browser; import java.util.*; import javax.json.*; import javax.json.stream.*; import java.io.*; import java.lang.reflect.Method; import java.lang.reflect.Parameter; import java.util.function.Function; import Torello.Java.Additional.*; import Torello.Java.JSON.*; import static Torello.Java.JSON.JFlag.*; import Torello.Java.StrCmpr; import Torello.JavaDoc.StaticFunctional; import Torello.JavaDoc.JDHeaderBackgroundImg; import Torello.JavaDoc.Excuse; /** * <SPAN CLASS=COPIEDJDK><B>This domain emulates different environments for the page.</B></SPAN> * * <EMBED CLASS='external-html' DATA-FILE-ID=CODE_GEN_NOTE> */ @StaticFunctional(Excused={"counter"}, Excuses={Excuse.CONFIGURATION}) @JDHeaderBackgroundImg(EmbedTagFileID="WOOD_PLANK_NOTE") public class Emulation { // ******************************************************************************************** // ******************************************************************************************** // Class Header Stuff // ******************************************************************************************** // ******************************************************************************************** // No Pubic Constructors private Emulation () { } // These two Vector's are used by all the "Methods" exported by this class. java.lang.reflect // is used to generate the JSON String's. It saves thousands of lines of Auto-Generated Code. private static final Map<String, Vector<String>> parameterNames = new HashMap<>(); private static final Map<String, Vector<Class<?>>> parameterTypes = new HashMap<>(); // Some Methods do not take any parameters - for instance all the "enable()" and "disable()" // I simply could not get ride of RAW-TYPES and UNCHECKED warnings... so there are now, // offically, two empty-vectors. One for String's, and the other for Classes. private static final Vector<String> EMPTY_VEC_STR = new Vector<>(); private static final Vector<Class<?>> EMPTY_VEC_CLASS = new Vector<>(); static { for (Method m : Emulation.class.getMethods()) { // This doesn't work! The parameter names are all "arg0" ... "argN" // It works for java.lang.reflect.Field, BUT NOT java.lang.reflect.Parameter! // // Vector<String> parameterNamesList = new Vector<>(); -- NOPE! Vector<Class<?>> parameterTypesList = new Vector<>(); for (Parameter p : m.getParameters()) parameterTypesList.add(p.getType()); parameterTypes.put( m.getName(), (parameterTypesList.size() > 0) ? parameterTypesList : EMPTY_VEC_CLASS ); } } static { Vector<String> v = null; parameterNames.put("canEmulate", EMPTY_VEC_STR); parameterNames.put("clearDeviceMetricsOverride", EMPTY_VEC_STR); parameterNames.put("clearGeolocationOverride", EMPTY_VEC_STR); parameterNames.put("resetPageScaleFactor", EMPTY_VEC_STR); v = new Vector<String>(1); parameterNames.put("setFocusEmulationEnabled", v); Collections.addAll(v, new String[] { "enabled", }); v = new Vector<String>(1); parameterNames.put("setAutoDarkModeOverride", v); Collections.addAll(v, new String[] { "enabled", }); v = new Vector<String>(1); parameterNames.put("setCPUThrottlingRate", v); Collections.addAll(v, new String[] { "rate", }); v = new Vector<String>(1); parameterNames.put("setDefaultBackgroundColorOverride", v); Collections.addAll(v, new String[] { "color", }); v = new Vector<String>(13); parameterNames.put("setDeviceMetricsOverride", v); Collections.addAll(v, new String[] { "width", "height", "deviceScaleFactor", "mobile", "scale", "screenWidth", "screenHeight", "positionX", "positionY", "dontSetVisibleSize", "screenOrientation", "viewport", "displayFeature", }); v = new Vector<String>(1); parameterNames.put("setScrollbarsHidden", v); Collections.addAll(v, new String[] { "hidden", }); v = new Vector<String>(1); parameterNames.put("setDocumentCookieDisabled", v); Collections.addAll(v, new String[] { "disabled", }); v = new Vector<String>(2); parameterNames.put("setEmitTouchEventsForMouse", v); Collections.addAll(v, new String[] { "enabled", "configuration", }); v = new Vector<String>(2); parameterNames.put("setEmulatedMedia", v); Collections.addAll(v, new String[] { "media", "features", }); v = new Vector<String>(1); parameterNames.put("setEmulatedVisionDeficiency", v); Collections.addAll(v, new String[] { "type", }); v = new Vector<String>(3); parameterNames.put("setGeolocationOverride", v); Collections.addAll(v, new String[] { "latitude", "longitude", "accuracy", }); v = new Vector<String>(2); parameterNames.put("setIdleOverride", v); Collections.addAll(v, new String[] { "isUserActive", "isScreenUnlocked", }); parameterNames.put("clearIdleOverride", EMPTY_VEC_STR); v = new Vector<String>(1); parameterNames.put("setNavigatorOverrides", v); Collections.addAll(v, new String[] { "platform", }); v = new Vector<String>(1); parameterNames.put("setPageScaleFactor", v); Collections.addAll(v, new String[] { "pageScaleFactor", }); v = new Vector<String>(1); parameterNames.put("setScriptExecutionDisabled", v); Collections.addAll(v, new String[] { "value", }); v = new Vector<String>(2); parameterNames.put("setTouchEmulationEnabled", v); Collections.addAll(v, new String[] { "enabled", "maxTouchPoints", }); v = new Vector<String>(5); parameterNames.put("setVirtualTimePolicy", v); Collections.addAll(v, new String[] { "policy", "budget", "maxVirtualTimeTaskStarvationCount", "waitForNavigation", "initialVirtualTime", }); v = new Vector<String>(1); parameterNames.put("setLocaleOverride", v); Collections.addAll(v, new String[] { "locale", }); v = new Vector<String>(1); parameterNames.put("setTimezoneOverride", v); Collections.addAll(v, new String[] { "timezoneId", }); v = new Vector<String>(2); parameterNames.put("setVisibleSize", v); Collections.addAll(v, new String[] { "width", "height", }); v = new Vector<String>(1); parameterNames.put("setDisabledImageTypes", v); Collections.addAll(v, new String[] { "imageTypes", }); v = new Vector<String>(4); parameterNames.put("setUserAgentOverride", v); Collections.addAll(v, new String[] { "userAgent", "acceptLanguage", "platform", "userAgentMetadata", }); } // ******************************************************************************************** // ******************************************************************************************** // Types - Static Inner Classes // ******************************************************************************************** // ******************************************************************************************** /** * advance: If the scheduler runs out of immediate work, the virtual time base may fast forward to * allow the next delayed task (if any) to run; pause: The virtual time base may not advance; * pauseIfNetworkFetchesPending: The virtual time base may not advance if there are any pending * resource fetches. * <BR /> * <BR /><B>EXPERIMENTAL</B> */ public static final String[] VirtualTimePolicy = { "advance", "pause", "pauseIfNetworkFetchesPending", }; /** * Enum of image types that can be disabled. * <BR /> * <BR /><B>EXPERIMENTAL</B> */ public static final String[] DisabledImageType = { "avif", "jxl", "webp", }; /** Screen orientation. */ public static class ScreenOrientation extends BaseType implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[] { false, false, }; } /** Orientation type. */ public final String type; /** Orientation angle. */ public final int angle; /** * Constructor * * @param type Orientation type. * <BR />Acceptable Values: ["portraitPrimary", "portraitSecondary", "landscapePrimary", "landscapeSecondary"] * * @param angle Orientation angle. */ public ScreenOrientation(String type, int angle) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (type == null) BRDPC.throwNPE("type"); // Exception-Check(s) to ensure that if any parameters which must adhere to a // provided List of Enumerated Values, fails, then IllegalArgumentException shall throw. BRDPC.checkIAE( "type", type, "portraitPrimary", "portraitSecondary", "landscapePrimary", "landscapeSecondary" ); this.type = type; this.angle = angle; } /** * JSON Object Constructor * @param jo A Json-Object having data about an instance of {@code 'ScreenOrientation'}. */ public ScreenOrientation (JsonObject jo) { this.type = ReadJSON.getString(jo, "type", false, true); this.angle = ReadPrimJSON.getInt(jo, "angle"); } /** Checks whether {@code 'this'} equals an input Java-{@code Object} */ public boolean equals(Object other) { if (other == null) return false; if (other.getClass() != this.getClass()) return false; ScreenOrientation o = (ScreenOrientation) other; return Objects.equals(this.type, o.type) && (this.angle == o.angle); } /** Generates a Hash-Code for {@code 'this'} instance */ public int hashCode() { return Objects.hashCode(this.type) + this.angle; } } /** <CODE>[No Description Provided by Google]</CODE> */ public static class DisplayFeature extends BaseType implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[] { false, false, false, }; } /** Orientation of a display feature in relation to screen */ public final String orientation; /** * The offset from the screen origin in either the x (for vertical * orientation) or y (for horizontal orientation) direction. */ public final int offset; /** * A display feature may mask content such that it is not physically * displayed - this length along with the offset describes this area. * A display feature that only splits content will have a 0 mask_length. */ public final int maskLength; /** * Constructor * * @param orientation Orientation of a display feature in relation to screen * <BR />Acceptable Values: ["vertical", "horizontal"] * * @param offset * The offset from the screen origin in either the x (for vertical * orientation) or y (for horizontal orientation) direction. * * @param maskLength * A display feature may mask content such that it is not physically * displayed - this length along with the offset describes this area. * A display feature that only splits content will have a 0 mask_length. */ public DisplayFeature(String orientation, int offset, int maskLength) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (orientation == null) BRDPC.throwNPE("orientation"); // Exception-Check(s) to ensure that if any parameters which must adhere to a // provided List of Enumerated Values, fails, then IllegalArgumentException shall throw. BRDPC.checkIAE( "orientation", orientation, "vertical", "horizontal" ); this.orientation = orientation; this.offset = offset; this.maskLength = maskLength; } /** * JSON Object Constructor * @param jo A Json-Object having data about an instance of {@code 'DisplayFeature'}. */ public DisplayFeature (JsonObject jo) { this.orientation = ReadJSON.getString(jo, "orientation", false, true); this.offset = ReadPrimJSON.getInt(jo, "offset"); this.maskLength = ReadPrimJSON.getInt(jo, "maskLength"); } /** Checks whether {@code 'this'} equals an input Java-{@code Object} */ public boolean equals(Object other) { if (other == null) return false; if (other.getClass() != this.getClass()) return false; DisplayFeature o = (DisplayFeature) other; return Objects.equals(this.orientation, o.orientation) && (this.offset == o.offset) && (this.maskLength == o.maskLength); } /** Generates a Hash-Code for {@code 'this'} instance */ public int hashCode() { return Objects.hashCode(this.orientation) + this.offset + this.maskLength; } } /** <CODE>[No Description Provided by Google]</CODE> */ public static class MediaFeature extends BaseType implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[] { false, false, }; } /** <CODE>[No Description Provided by Google]</CODE> */ public final String name; /** <CODE>[No Description Provided by Google]</CODE> */ public final String value; /** * Constructor * * @param name - * * @param value - */ public MediaFeature(String name, String value) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (name == null) BRDPC.throwNPE("name"); if (value == null) BRDPC.throwNPE("value"); this.name = name; this.value = value; } /** * JSON Object Constructor * @param jo A Json-Object having data about an instance of {@code 'MediaFeature'}. */ public MediaFeature (JsonObject jo) { this.name = ReadJSON.getString(jo, "name", false, true); this.value = ReadJSON.getString(jo, "value", false, true); } /** Checks whether {@code 'this'} equals an input Java-{@code Object} */ public boolean equals(Object other) { if (other == null) return false; if (other.getClass() != this.getClass()) return false; MediaFeature o = (MediaFeature) other; return Objects.equals(this.name, o.name) && Objects.equals(this.value, o.value); } /** Generates a Hash-Code for {@code 'this'} instance */ public int hashCode() { return Objects.hashCode(this.name) + Objects.hashCode(this.value); } } /** * Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints * <BR /> * <BR /><B>EXPERIMENTAL</B> */ public static class UserAgentBrandVersion extends BaseType implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[] { false, false, }; } /** <CODE>[No Description Provided by Google]</CODE> */ public final String brand; /** <CODE>[No Description Provided by Google]</CODE> */ public final String version; /** * Constructor * * @param brand - * * @param version - */ public UserAgentBrandVersion(String brand, String version) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (brand == null) BRDPC.throwNPE("brand"); if (version == null) BRDPC.throwNPE("version"); this.brand = brand; this.version = version; } /** * JSON Object Constructor * @param jo A Json-Object having data about an instance of {@code 'UserAgentBrandVersion'}. */ public UserAgentBrandVersion (JsonObject jo) { this.brand = ReadJSON.getString(jo, "brand", false, true); this.version = ReadJSON.getString(jo, "version", false, true); } /** Checks whether {@code 'this'} equals an input Java-{@code Object} */ public boolean equals(Object other) { if (other == null) return false; if (other.getClass() != this.getClass()) return false; UserAgentBrandVersion o = (UserAgentBrandVersion) other; return Objects.equals(this.brand, o.brand) && Objects.equals(this.version, o.version); } /** Generates a Hash-Code for {@code 'this'} instance */ public int hashCode() { return Objects.hashCode(this.brand) + Objects.hashCode(this.version); } } /** * Used to specify User Agent Cient Hints to emulate. See https://wicg.github.io/ua-client-hints * Missing optional values will be filled in by the target with what it would normally use. * <BR /> * <BR /><B>EXPERIMENTAL</B> */ public static class UserAgentMetadata extends BaseType implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[] { true, true, false, false, false, false, false, }; } /** * <CODE>[No Description Provided by Google]</CODE> * <BR /> * <BR /><B>OPTIONAL</B> */ public final Emulation.UserAgentBrandVersion[] brands; /** * <CODE>[No Description Provided by Google]</CODE> * <BR /> * <BR /><B>OPTIONAL</B> */ public final String fullVersion; /** <CODE>[No Description Provided by Google]</CODE> */ public final String platform; /** <CODE>[No Description Provided by Google]</CODE> */ public final String platformVersion; /** <CODE>[No Description Provided by Google]</CODE> */ public final String architecture; /** <CODE>[No Description Provided by Google]</CODE> */ public final String model; /** <CODE>[No Description Provided by Google]</CODE> */ public final boolean mobile; /** * Constructor * * @param brands - * <BR /><B>OPTIONAL</B> * * @param fullVersion - * <BR /><B>OPTIONAL</B> * * @param platform - * * @param platformVersion - * * @param architecture - * * @param model - * * @param mobile - */ public UserAgentMetadata( Emulation.UserAgentBrandVersion[] brands, String fullVersion, String platform, String platformVersion, String architecture, String model, boolean mobile ) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (platform == null) BRDPC.throwNPE("platform"); if (platformVersion == null) BRDPC.throwNPE("platformVersion"); if (architecture == null) BRDPC.throwNPE("architecture"); if (model == null) BRDPC.throwNPE("model"); this.brands = brands; this.fullVersion = fullVersion; this.platform = platform; this.platformVersion = platformVersion; this.architecture = architecture; this.model = model; this.mobile = mobile; } /** * JSON Object Constructor * @param jo A Json-Object having data about an instance of {@code 'UserAgentMetadata'}. */ public UserAgentMetadata (JsonObject jo) { this.brands = (jo.getJsonArray("brands") == null) ? null : ReadArrJSON.DimN.objArr(jo.getJsonArray("brands"), null, 0, Emulation.UserAgentBrandVersion[].class); this.fullVersion = ReadJSON.getString(jo, "fullVersion", true, false); this.platform = ReadJSON.getString(jo, "platform", false, true); this.platformVersion = ReadJSON.getString(jo, "platformVersion", false, true); this.architecture = ReadJSON.getString(jo, "architecture", false, true); this.model = ReadJSON.getString(jo, "model", false, true); this.mobile = ReadPrimJSON.getBoolean(jo, "mobile"); } /** Checks whether {@code 'this'} equals an input Java-{@code Object} */ public boolean equals(Object other) { if (other == null) return false; if (other.getClass() != this.getClass()) return false; UserAgentMetadata o = (UserAgentMetadata) other; return Arrays.deepEquals(this.brands, o.brands) && Objects.equals(this.fullVersion, o.fullVersion) && Objects.equals(this.platform, o.platform) && Objects.equals(this.platformVersion, o.platformVersion) && Objects.equals(this.architecture, o.architecture) && Objects.equals(this.model, o.model) && (this.mobile == o.mobile); } /** Generates a Hash-Code for {@code 'this'} instance */ public int hashCode() { return Arrays.deepHashCode(this.brands) + Objects.hashCode(this.fullVersion) + Objects.hashCode(this.platform) + Objects.hashCode(this.platformVersion) + Objects.hashCode(this.architecture) + Objects.hashCode(this.model) + (this.mobile ? 1 : 0); } } /** * Notification sent after the virtual time budget for the current VirtualTimePolicy has run out. * <BR /> * <BR /><B>EXPERIMENTAL</B> * * <BR /><BR />This is Marker-Event. Marker-Event's are Events that do not posses * any data, fields or state. When they are fired, only the event name is supplied. */ public static class virtualTimeBudgetExpired extends BrowserEvent implements java.io.Serializable { /** For Object Serialization. java.io.Serializable */ protected static final long serialVersionUID = 1; public boolean[] optionals() { return new boolean[0]; } /** JSON Object Constructor */ public virtualTimeBudgetExpired(JsonObject jo) { super("Emulation", "virtualTimeBudgetExpired", 0); } @Override public String toString() { return "Emulation.virtualTimeBudgetExpired Marker Event\n"; } } // Counter for keeping the WebSocket Request ID's distinct. private static int counter = 1; /** * Tells whether emulation is supported. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * Boolean></CODE> * * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE><JsonObject, * Boolean></CODE> will be returned. * * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>, * using {@link Promise#await()}, <I>and the returned result of this Browser Function may * may be retrieved.</I> * * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B> * <BR /><BR /><UL CLASS=JDUL> * <LI><CODE>Boolean (<B>result</B></CODE>) * <BR />True if emulation is supported. * </LI> * </UL> */ public static Script<String, JsonObject, Boolean> canEmulate() { final int webSocketID = 21000000 + counter++; final boolean[] optionals = new boolean[0]; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("canEmulate"), parameterNames.get("canEmulate"), optionals, webSocketID, "Emulation.canEmulate" ); // 'JSON Binding' ... Converts Browser Response-JSON to 'Boolean' Function<JsonObject, Boolean> responseProcessor = (JsonObject jo) -> ReadPrimJSON.getBoolean(jo, "result"); // Pass the 'defaultSender' to Script-Constructor // The sender that is used can be changed before executing script. return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor); } /** * Clears the overridden device metrics. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> clearDeviceMetricsOverride() { final int webSocketID = 21001000 + counter++; final boolean[] optionals = new boolean[0]; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("clearDeviceMetricsOverride"), parameterNames.get("clearDeviceMetricsOverride"), optionals, webSocketID, "Emulation.clearDeviceMetricsOverride" ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Clears the overridden Geolocation Position and Error. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> clearGeolocationOverride() { final int webSocketID = 21002000 + counter++; final boolean[] optionals = new boolean[0]; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("clearGeolocationOverride"), parameterNames.get("clearGeolocationOverride"), optionals, webSocketID, "Emulation.clearGeolocationOverride" ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Requests that page scale factor is reset to initial values. * <BR /><B>EXPERIMENTAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> resetPageScaleFactor() { final int webSocketID = 21003000 + counter++; final boolean[] optionals = new boolean[0]; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("resetPageScaleFactor"), parameterNames.get("resetPageScaleFactor"), optionals, webSocketID, "Emulation.resetPageScaleFactor" ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Enables or disables simulating a focused and active page. * <BR /><B>EXPERIMENTAL</B> * * @param enabled Whether to enable to disable focus emulation. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setFocusEmulationEnabled(boolean enabled) { final int webSocketID = 21004000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setFocusEmulationEnabled"), parameterNames.get("setFocusEmulationEnabled"), optionals, webSocketID, "Emulation.setFocusEmulationEnabled", enabled ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Automatically render all web contents using a dark theme. * <BR /><B>EXPERIMENTAL</B> * * @param enabled * Whether to enable or disable automatic dark mode. * If not specified, any existing override will be cleared. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setAutoDarkModeOverride(Boolean enabled) { final int webSocketID = 21005000 + counter++; final boolean[] optionals = { true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setAutoDarkModeOverride"), parameterNames.get("setAutoDarkModeOverride"), optionals, webSocketID, "Emulation.setAutoDarkModeOverride", enabled ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Enables CPU throttling to emulate slow CPUs. * <BR /><B>EXPERIMENTAL</B> * * @param rate Throttling rate as a slowdown factor (1 is no throttle, 2 is 2x slowdown, etc). * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setCPUThrottlingRate(Number rate) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (rate == null) BRDPC.throwNPE("rate"); final int webSocketID = 21006000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setCPUThrottlingRate"), parameterNames.get("setCPUThrottlingRate"), optionals, webSocketID, "Emulation.setCPUThrottlingRate", rate ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Sets or clears an override of the default background color of the frame. This override is used * if the content does not specify one. * * @param color * RGBA of the default background color. If not specified, any existing override will be * cleared. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setDefaultBackgroundColorOverride (DOM.RGBA color) { final int webSocketID = 21007000 + counter++; final boolean[] optionals = { true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setDefaultBackgroundColorOverride"), parameterNames.get("setDefaultBackgroundColorOverride"), optionals, webSocketID, "Emulation.setDefaultBackgroundColorOverride", color ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Overrides the values of device screen dimensions (window.screen.width, window.screen.height, * window.innerWidth, window.innerHeight, and "device-width"/"device-height"-related CSS media * query results). * * @param width Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override. * * @param height Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override. * * @param deviceScaleFactor Overriding device scale factor value. 0 disables the override. * * @param mobile * Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text * autosizing and more. * * @param scale Scale to apply to resulting view image. * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param screenWidth Overriding screen width value in pixels (minimum 0, maximum 10000000). * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param screenHeight Overriding screen height value in pixels (minimum 0, maximum 10000000). * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param positionX Overriding view X position on screen in pixels (minimum 0, maximum 10000000). * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param positionY Overriding view Y position on screen in pixels (minimum 0, maximum 10000000). * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param dontSetVisibleSize Do not set visible view size, rely upon explicit setVisibleSize call. * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param screenOrientation Screen orientation override. * <BR /><B>OPTIONAL</B> * * @param viewport * If set, the visible area of the page will be overridden to this viewport. This viewport * change is not observed by the page, e.g. viewport-relative elements do not change positions. * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @param displayFeature * If set, the display feature of a multi-segment screen. If not set, multi-segment support * is turned-off. * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setDeviceMetricsOverride( int width, int height, Number deviceScaleFactor, boolean mobile, Number scale, Integer screenWidth, Integer screenHeight, Integer positionX, Integer positionY, Boolean dontSetVisibleSize, Emulation.ScreenOrientation screenOrientation, Page.Viewport viewport, Emulation.DisplayFeature displayFeature ) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (deviceScaleFactor == null) BRDPC.throwNPE("deviceScaleFactor"); final int webSocketID = 21008000 + counter++; final boolean[] optionals = { false, false, false, false, true, true, true, true, true, true, true, true, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setDeviceMetricsOverride"), parameterNames.get("setDeviceMetricsOverride"), optionals, webSocketID, "Emulation.setDeviceMetricsOverride", width, height, deviceScaleFactor, mobile, scale, screenWidth, screenHeight, positionX, positionY, dontSetVisibleSize, screenOrientation, viewport, displayFeature ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * <CODE>[No Description Provided by Google]</CODE> * <BR /><B>EXPERIMENTAL</B> * * @param hidden Whether scrollbars should be always hidden. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setScrollbarsHidden(boolean hidden) { final int webSocketID = 21009000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setScrollbarsHidden"), parameterNames.get("setScrollbarsHidden"), optionals, webSocketID, "Emulation.setScrollbarsHidden", hidden ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * <CODE>[No Description Provided by Google]</CODE> * <BR /><B>EXPERIMENTAL</B> * * @param disabled Whether document.coookie API should be disabled. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setDocumentCookieDisabled(boolean disabled) { final int webSocketID = 21010000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setDocumentCookieDisabled"), parameterNames.get("setDocumentCookieDisabled"), optionals, webSocketID, "Emulation.setDocumentCookieDisabled", disabled ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * <CODE>[No Description Provided by Google]</CODE> * <BR /><B>EXPERIMENTAL</B> * * @param enabled Whether touch emulation based on mouse input should be enabled. * * @param configuration Touch/gesture events configuration. Default: current platform. * <BR />Acceptable Values: ["mobile", "desktop"] * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setEmitTouchEventsForMouse (boolean enabled, String configuration) { // Exception-Check(s) to ensure that if any parameters which must adhere to a // provided List of Enumerated Values, fails, then IllegalArgumentException shall throw. BRDPC.checkIAE( "configuration", configuration, "mobile", "desktop" ); final int webSocketID = 21011000 + counter++; final boolean[] optionals = { false, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setEmitTouchEventsForMouse"), parameterNames.get("setEmitTouchEventsForMouse"), optionals, webSocketID, "Emulation.setEmitTouchEventsForMouse", enabled, configuration ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Emulates the given media type or media feature for CSS media queries. * * @param media Media type to emulate. Empty string disables the override. * <BR /><B>OPTIONAL</B> * * @param features Media features to emulate. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setEmulatedMedia (String media, Emulation.MediaFeature[] features) { final int webSocketID = 21012000 + counter++; final boolean[] optionals = { true, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setEmulatedMedia"), parameterNames.get("setEmulatedMedia"), optionals, webSocketID, "Emulation.setEmulatedMedia", media, features ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Emulates the given vision deficiency. * <BR /><B>EXPERIMENTAL</B> * * @param type Vision deficiency to emulate. * <BR />Acceptable Values: ["none", "achromatopsia", "blurredVision", "deuteranopia", "protanopia", "tritanopia"] * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setEmulatedVisionDeficiency(String type) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (type == null) BRDPC.throwNPE("type"); // Exception-Check(s) to ensure that if any parameters which must adhere to a // provided List of Enumerated Values, fails, then IllegalArgumentException shall throw. BRDPC.checkIAE( "type", type, "none", "achromatopsia", "blurredVision", "deuteranopia", "protanopia", "tritanopia" ); final int webSocketID = 21013000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setEmulatedVisionDeficiency"), parameterNames.get("setEmulatedVisionDeficiency"), optionals, webSocketID, "Emulation.setEmulatedVisionDeficiency", type ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Overrides the Geolocation Position or Error. Omitting any of the parameters emulates position * unavailable. * * @param latitude Mock latitude * <BR /><B>OPTIONAL</B> * * @param longitude Mock longitude * <BR /><B>OPTIONAL</B> * * @param accuracy Mock accuracy * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setGeolocationOverride (Number latitude, Number longitude, Number accuracy) { final int webSocketID = 21014000 + counter++; final boolean[] optionals = { true, true, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setGeolocationOverride"), parameterNames.get("setGeolocationOverride"), optionals, webSocketID, "Emulation.setGeolocationOverride", latitude, longitude, accuracy ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Overrides the Idle state. * <BR /><B>EXPERIMENTAL</B> * * @param isUserActive Mock isUserActive * * @param isScreenUnlocked Mock isScreenUnlocked * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setIdleOverride (boolean isUserActive, boolean isScreenUnlocked) { final int webSocketID = 21015000 + counter++; final boolean[] optionals = { false, false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setIdleOverride"), parameterNames.get("setIdleOverride"), optionals, webSocketID, "Emulation.setIdleOverride", isUserActive, isScreenUnlocked ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Clears Idle state overrides. * <BR /><B>EXPERIMENTAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> clearIdleOverride() { final int webSocketID = 21016000 + counter++; final boolean[] optionals = new boolean[0]; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("clearIdleOverride"), parameterNames.get("clearIdleOverride"), optionals, webSocketID, "Emulation.clearIdleOverride" ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Overrides value returned by the javascript navigator object. * <BR /><B>EXPERIMENTAL</B> * <BR /><B>DEPRECATED</B> * * @param platform The platform navigator.platform should return. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setNavigatorOverrides(String platform) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (platform == null) BRDPC.throwNPE("platform"); final int webSocketID = 21017000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setNavigatorOverrides"), parameterNames.get("setNavigatorOverrides"), optionals, webSocketID, "Emulation.setNavigatorOverrides", platform ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Sets a specified page scale factor. * <BR /><B>EXPERIMENTAL</B> * * @param pageScaleFactor Page scale factor. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setPageScaleFactor(Number pageScaleFactor) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (pageScaleFactor == null) BRDPC.throwNPE("pageScaleFactor"); final int webSocketID = 21018000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setPageScaleFactor"), parameterNames.get("setPageScaleFactor"), optionals, webSocketID, "Emulation.setPageScaleFactor", pageScaleFactor ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Switches script execution in the page. * * @param value Whether script execution should be disabled in the page. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setScriptExecutionDisabled(boolean value) { final int webSocketID = 21019000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setScriptExecutionDisabled"), parameterNames.get("setScriptExecutionDisabled"), optionals, webSocketID, "Emulation.setScriptExecutionDisabled", value ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Enables touch on platforms which do not support them. * * @param enabled Whether the touch event emulation should be enabled. * * @param maxTouchPoints Maximum touch points supported. Defaults to one. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setTouchEmulationEnabled (boolean enabled, Integer maxTouchPoints) { final int webSocketID = 21020000 + counter++; final boolean[] optionals = { false, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setTouchEmulationEnabled"), parameterNames.get("setTouchEmulationEnabled"), optionals, webSocketID, "Emulation.setTouchEmulationEnabled", enabled, maxTouchPoints ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Turns on virtual time for all frames (replacing real-time with a synthetic time source) and sets * the current virtual time policy. Note this supersedes any previous time budget. * <BR /><B>EXPERIMENTAL</B> * * @param policy - * * @param budget * If set, after this many virtual milliseconds have elapsed virtual time will be paused and a * virtualTimeBudgetExpired event is sent. * <BR /><B>OPTIONAL</B> * * @param maxVirtualTimeTaskStarvationCount * If set this specifies the maximum number of tasks that can be run before virtual is forced * forwards to prevent deadlock. * <BR /><B>OPTIONAL</B> * * @param waitForNavigation * If set the virtual time policy change should be deferred until any frame starts navigating. * Note any previous deferred policy change is superseded. * <BR /><B>OPTIONAL</B> * * @param initialVirtualTime If set, base::Time::Now will be overridden to initially return this value. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * Number></CODE> * * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE><JsonObject, * Number></CODE> will be returned. * * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>, * using {@link Promise#await()}, <I>and the returned result of this Browser Function may * may be retrieved.</I> * * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B> * <BR /><BR /><UL CLASS=JDUL> * <LI><CODE>Number (<B>virtualTimeTicksBase</B></CODE>) * <BR />Absolute timestamp at which virtual time was first enabled (up time in milliseconds). * </LI> * </UL> */ public static Script<String, JsonObject, Number> setVirtualTimePolicy( String policy, Number budget, Integer maxVirtualTimeTaskStarvationCount, Boolean waitForNavigation, Number initialVirtualTime ) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (policy == null) BRDPC.throwNPE("policy"); // Exception-Check(s) to ensure that if any parameters which must adhere to a // provided List of Enumerated Values, fails, then IllegalArgumentException shall throw. BRDPC.checkIAE("policy", policy, "Emulation.VirtualTimePolicy", Emulation.VirtualTimePolicy); final int webSocketID = 21021000 + counter++; final boolean[] optionals = { false, true, true, true, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setVirtualTimePolicy"), parameterNames.get("setVirtualTimePolicy"), optionals, webSocketID, "Emulation.setVirtualTimePolicy", policy, budget, maxVirtualTimeTaskStarvationCount, waitForNavigation, initialVirtualTime ); // 'JSON Binding' ... Converts Browser Response-JSON to 'Number' Function<JsonObject, Number> responseProcessor = (JsonObject jo) -> ReadNumberJSON.get(jo, "virtualTimeTicksBase", false, true); // Pass the 'defaultSender' to Script-Constructor // The sender that is used can be changed before executing script. return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor); } /** * Overrides default host system locale with the specified one. * <BR /><B>EXPERIMENTAL</B> * * @param locale * ICU style C locale (e.g. "en_US"). If not specified or empty, disables the override and * restores default host system locale. * <BR /><B>OPTIONAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setLocaleOverride(String locale) { final int webSocketID = 21022000 + counter++; final boolean[] optionals = { true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setLocaleOverride"), parameterNames.get("setLocaleOverride"), optionals, webSocketID, "Emulation.setLocaleOverride", locale ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Overrides default host system timezone with the specified one. * <BR /><B>EXPERIMENTAL</B> * * @param timezoneId * The timezone identifier. If empty, disables the override and * restores default host system timezone. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setTimezoneOverride(String timezoneId) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (timezoneId == null) BRDPC.throwNPE("timezoneId"); final int webSocketID = 21023000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setTimezoneOverride"), parameterNames.get("setTimezoneOverride"), optionals, webSocketID, "Emulation.setTimezoneOverride", timezoneId ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Resizes the frame/viewport of the page. Note that this does not affect the frame's container * (e.g. browser window). Can be used to produce screenshots of the specified size. Not supported * on Android. * <BR /><B>EXPERIMENTAL</B> * <BR /><B>DEPRECATED</B> * * @param width Frame width (DIP). * * @param height Frame height (DIP). * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setVisibleSize(int width, int height) { final int webSocketID = 21024000 + counter++; final boolean[] optionals = { false, false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setVisibleSize"), parameterNames.get("setVisibleSize"), optionals, webSocketID, "Emulation.setVisibleSize", width, height ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * <CODE>[No Description Provided by Google]</CODE> * <BR /><B>EXPERIMENTAL</B> * * @param imageTypes Image types to disable. * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setDisabledImageTypes(String[] imageTypes) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (imageTypes == null) BRDPC.throwNPE("imageTypes"); final int webSocketID = 21025000 + counter++; final boolean[] optionals = { false, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setDisabledImageTypes"), parameterNames.get("setDisabledImageTypes"), optionals, webSocketID, "Emulation.setDisabledImageTypes", (Object) imageTypes ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } /** * Allows overriding user agent with the given string. * * @param userAgent User agent to use. * * @param acceptLanguage Browser langugage to emulate. * <BR /><B>OPTIONAL</B> * * @param platform The platform navigator.platform should return. * <BR /><B>OPTIONAL</B> * * @param userAgentMetadata To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData * <BR /><B>OPTIONAL</B> * <BR /><B>EXPERIMENTAL</B> * * @return An instance of <CODE>{@link Script}<String, {@link JsonObject}, * {@link Ret0}></CODE> * * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the * browser receives the invocation-request. * * <BR /><BR />This Browser-Function <I>does not have</I> a return-value. You may choose to * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0} * {@code >} to ensure the Browser Function has run to completion. */ public static Script<String, JsonObject, Ret0> setUserAgentOverride( String userAgent, String acceptLanguage, String platform, Emulation.UserAgentMetadata userAgentMetadata ) { // Exception-Check(s) to ensure that if any parameters which are not declared as // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw. if (userAgent == null) BRDPC.throwNPE("userAgent"); final int webSocketID = 21026000 + counter++; final boolean[] optionals = { false, true, true, true, }; // Convert Method Parameters into JSON. Build the JSON Request-Object (as a String) String requestJSON = WriteJSON.get( parameterTypes.get("setUserAgentOverride"), parameterNames.get("setUserAgentOverride"), optionals, webSocketID, "Emulation.setUserAgentOverride", userAgent, acceptLanguage, platform, userAgentMetadata ); // This Remote Command does not have a Return-Value. return new Script<> (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues); } } |