btcp-browser-agent 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/package.json +8 -9
  2. package/packages/core/dist/actions.d.ts +97 -0
  3. package/packages/core/dist/actions.js +940 -0
  4. package/packages/core/dist/errors.d.ts +138 -0
  5. package/packages/core/dist/errors.js +157 -0
  6. package/packages/core/dist/index.d.ts +120 -0
  7. package/packages/core/dist/index.js +134 -0
  8. package/packages/core/dist/ref-map.d.ts +16 -0
  9. package/packages/core/dist/ref-map.js +91 -0
  10. package/packages/core/dist/snapshot.d.ts +37 -0
  11. package/packages/core/dist/snapshot.js +751 -0
  12. package/packages/core/dist/types.d.ts +396 -0
  13. package/packages/core/dist/types.js +7 -0
  14. package/packages/extension/dist/background.d.ts +227 -0
  15. package/packages/extension/dist/background.js +737 -0
  16. package/packages/extension/dist/content.d.ts +18 -0
  17. package/packages/extension/dist/content.js +149 -0
  18. package/packages/extension/dist/index.d.ts +228 -0
  19. package/packages/extension/dist/index.js +350 -0
  20. package/packages/extension/dist/session-manager.d.ts +87 -0
  21. package/packages/extension/dist/session-manager.js +322 -0
  22. package/packages/extension/{src/session-types.ts → dist/session-types.d.ts} +113 -144
  23. package/packages/extension/dist/session-types.js +5 -0
  24. package/packages/extension/dist/types.d.ts +88 -0
  25. package/packages/extension/dist/types.js +7 -0
  26. package/CLAUDE.md +0 -230
  27. package/SKILL.md +0 -143
  28. package/SNAPSHOT_IMPROVEMENTS.md +0 -302
  29. package/USAGE.md +0 -146
  30. package/dist/index.d.ts.map +0 -1
  31. package/dist/index.js.map +0 -1
  32. package/docs/browser-cli-design.md +0 -500
  33. package/examples/chrome-extension/CHANGELOG.md +0 -210
  34. package/examples/chrome-extension/DEBUG.md +0 -231
  35. package/examples/chrome-extension/ERROR_FIXED.md +0 -147
  36. package/examples/chrome-extension/QUICK_TEST.md +0 -189
  37. package/examples/chrome-extension/README.md +0 -149
  38. package/examples/chrome-extension/SESSION_ONLY_MODE.md +0 -305
  39. package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +0 -97
  40. package/examples/chrome-extension/build.js +0 -43
  41. package/examples/chrome-extension/manifest.json +0 -37
  42. package/examples/chrome-extension/package-lock.json +0 -1063
  43. package/examples/chrome-extension/package.json +0 -21
  44. package/examples/chrome-extension/popup.html +0 -195
  45. package/examples/chrome-extension/src/background.ts +0 -12
  46. package/examples/chrome-extension/src/content.ts +0 -7
  47. package/examples/chrome-extension/src/popup.ts +0 -303
  48. package/examples/chrome-extension/src/scenario-google-github.ts +0 -389
  49. package/examples/chrome-extension/test-page.html +0 -127
  50. package/examples/chrome-extension/tests/README.md +0 -206
  51. package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +0 -380
  52. package/examples/chrome-extension/tsconfig.json +0 -14
  53. package/examples/snapshots/README.md +0 -207
  54. package/examples/snapshots/amazon-com-detail.html +0 -9528
  55. package/examples/snapshots/amazon-com-detail.snapshot.txt +0 -997
  56. package/examples/snapshots/convert-snapshots.ts +0 -97
  57. package/examples/snapshots/edition-cnn-com.html +0 -13292
  58. package/examples/snapshots/edition-cnn-com.snapshot.txt +0 -562
  59. package/examples/snapshots/github-com-microsoft-vscode.html +0 -2916
  60. package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +0 -455
  61. package/examples/snapshots/google-search.html +0 -20012
  62. package/examples/snapshots/google-search.snapshot.txt +0 -195
  63. package/examples/snapshots/metadata.json +0 -86
  64. package/examples/snapshots/npr-org-templates.html +0 -2031
  65. package/examples/snapshots/npr-org-templates.snapshot.txt +0 -224
  66. package/examples/snapshots/stackoverflow-com.html +0 -5216
  67. package/examples/snapshots/stackoverflow-com.snapshot.txt +0 -2404
  68. package/examples/snapshots/test-all-mode.html +0 -46
  69. package/examples/snapshots/test-all-mode.snapshot.txt +0 -5
  70. package/examples/snapshots/validate.test.ts +0 -296
  71. package/packages/cli/package.json +0 -42
  72. package/packages/cli/src/__tests__/cli.test.ts +0 -434
  73. package/packages/cli/src/__tests__/errors.test.ts +0 -226
  74. package/packages/cli/src/__tests__/executor.test.ts +0 -275
  75. package/packages/cli/src/__tests__/formatter.test.ts +0 -260
  76. package/packages/cli/src/__tests__/parser.test.ts +0 -288
  77. package/packages/cli/src/__tests__/suggestions.test.ts +0 -255
  78. package/packages/cli/src/commands/back.ts +0 -22
  79. package/packages/cli/src/commands/check.ts +0 -33
  80. package/packages/cli/src/commands/clear.ts +0 -33
  81. package/packages/cli/src/commands/click.ts +0 -32
  82. package/packages/cli/src/commands/closetab.ts +0 -31
  83. package/packages/cli/src/commands/eval.ts +0 -41
  84. package/packages/cli/src/commands/fill.ts +0 -30
  85. package/packages/cli/src/commands/focus.ts +0 -33
  86. package/packages/cli/src/commands/forward.ts +0 -22
  87. package/packages/cli/src/commands/goto.ts +0 -34
  88. package/packages/cli/src/commands/help.ts +0 -162
  89. package/packages/cli/src/commands/hover.ts +0 -34
  90. package/packages/cli/src/commands/index.ts +0 -129
  91. package/packages/cli/src/commands/newtab.ts +0 -35
  92. package/packages/cli/src/commands/press.ts +0 -40
  93. package/packages/cli/src/commands/reload.ts +0 -25
  94. package/packages/cli/src/commands/screenshot.ts +0 -27
  95. package/packages/cli/src/commands/scroll.ts +0 -64
  96. package/packages/cli/src/commands/select.ts +0 -35
  97. package/packages/cli/src/commands/snapshot.ts +0 -21
  98. package/packages/cli/src/commands/tab.ts +0 -32
  99. package/packages/cli/src/commands/tabs.ts +0 -26
  100. package/packages/cli/src/commands/text.ts +0 -27
  101. package/packages/cli/src/commands/title.ts +0 -17
  102. package/packages/cli/src/commands/type.ts +0 -38
  103. package/packages/cli/src/commands/uncheck.ts +0 -33
  104. package/packages/cli/src/commands/url.ts +0 -17
  105. package/packages/cli/src/commands/wait.ts +0 -54
  106. package/packages/cli/src/errors.ts +0 -164
  107. package/packages/cli/src/executor.ts +0 -68
  108. package/packages/cli/src/formatter.ts +0 -215
  109. package/packages/cli/src/index.ts +0 -257
  110. package/packages/cli/src/parser.ts +0 -195
  111. package/packages/cli/src/suggestions.ts +0 -207
  112. package/packages/cli/src/terminal/Terminal.ts +0 -365
  113. package/packages/cli/src/terminal/index.ts +0 -5
  114. package/packages/cli/src/types.ts +0 -155
  115. package/packages/cli/tsconfig.json +0 -20
  116. package/packages/core/package.json +0 -35
  117. package/packages/core/src/actions.ts +0 -1210
  118. package/packages/core/src/errors.ts +0 -296
  119. package/packages/core/src/index.test.ts +0 -638
  120. package/packages/core/src/index.ts +0 -220
  121. package/packages/core/src/ref-map.ts +0 -107
  122. package/packages/core/src/snapshot.ts +0 -873
  123. package/packages/core/src/types.ts +0 -536
  124. package/packages/core/tsconfig.json +0 -23
  125. package/packages/extension/README.md +0 -129
  126. package/packages/extension/package.json +0 -43
  127. package/packages/extension/src/background.ts +0 -888
  128. package/packages/extension/src/content.ts +0 -172
  129. package/packages/extension/src/index.ts +0 -579
  130. package/packages/extension/src/session-manager.ts +0 -385
  131. package/packages/extension/src/types.ts +0 -162
  132. package/packages/extension/tsconfig.json +0 -28
  133. package/src/index.ts +0 -64
  134. package/tsconfig.build.json +0 -12
  135. package/tsconfig.json +0 -26
  136. package/vitest.config.ts +0 -13
@@ -1,224 +0,0 @@
1
- PAGE: http://localhost/ | Rose Mary Woods, Devoted Nixon Secretary, Dies : NPR | viewport=1024x768
2
- SNAPSHOT: elements=1047 refs=221
3
-
4
- LINK "Skip to main content" @ref:0 /ul/li[1]/a
5
- LINK "Keyboard shortcuts for audio player" @ref:1 /ul/li[2]/a
6
- BUTTON @ref:2 /div#player-react-mount[4]/section#npr-player/button#npr-player__stream-initiated[1]
7
- BUTTON @ref:3 /div#player-react-mount[4]/section#npr-player/button#npr-player__segment-initiated[2]
8
- BUTTON @ref:4 /div#player-react-mount[4]/section#npr-player/button[3]
9
- BUTTON @ref:5 /div#player-react-mount[4]/section#npr-player/button[4]
10
- BUTTON @ref:6 /div#player-react-mount[4]/section#npr-player/button#npr-player__audio-complete[5]
11
- BUTTON "NPR 24 Hour Program StreamOn Air Now" @ref:7 /div#player-react-mount[4]/section#npr-player/article.item-initial/button
12
- BUTTON "Hourly News" @ref:8 /div#player-react-mount[4]/section#npr-player/ul/li[1]/button.btn-newscast
13
- BUTTON "Listen Live" @ref:9 /div#player-react-mount[4]/section#npr-player/ul/li[2]/button.btn-live-radio
14
- BUTTON "My Playlist" @ref:10 /div#player-react-mount[4]/section#npr-player/ul/li[3]/button.btn-playlist
15
- BUTTON "Open Navigation Menu" @ref:11 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__toggle-wrap[1]/button#navigation__toggle--open
16
- LINK @ref:12 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__home[2]/a
17
- LINK "Newsletters" @ref:13 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__newsletters[4]/a
18
- LINK "Sign In" @ref:14 /header#globalheader/nav.navigation/ul.navigation__top-level/li#user-account-dropdown-mount[5]/a
19
- LINK "NPR Shop" @ref:15 /header#globalheader/nav.navigation/ul.navigation__top-level/li.navigation__shop[6]/a
20
- LINK "Donate" @ref:16 /header#globalheader/nav.navigation/ul.navigation__top-level/li[7]/a
21
- LINK "Local Station" @ref:17 /nav.navigation/ul.navigation__top-level/li[7]/ul/li[1]/a
22
- LINK "NPR Network" @ref:18 /nav.navigation/ul.navigation__top-level/li[7]/ul/li[2]/a
23
- BUTTON "Close Navigation Menu" @ref:19 (expanded) /header#globalheader/nav.navigation/section#main-menu[1]/div.menu__inner/header.menu__header/button#navigation__toggle--close
24
- LINK "Home" @ref:20 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[1]/div.menu__item-inner/a
25
- LINK "News" @ref:21 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[2]/div.menu__item-inner/a
26
- BUTTON "Expand/collapse submenu for News" @ref:22 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[2]/div.menu__item-inner/button.menu__toggle-submenu
27
- LINK "National" @ref:23 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[1]/a
28
- LINK "World" @ref:24 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[2]/a
29
- LINK "Politics" @ref:25 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[3]/a
30
- LINK "Business" @ref:26 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[4]/a
31
- LINK "Health" @ref:27 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[5]/a
32
- LINK "Science" @ref:28 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[6]/a
33
- LINK "Climate" @ref:29 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[7]/a
34
- LINK "Race" @ref:30 /div.menu__inner/ul.menu__list/li.menu__item[2]/ul/li[8]/a
35
- LINK "Culture" @ref:31 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[3]/div.menu__item-inner/a
36
- BUTTON "Expand/collapse submenu for Culture" @ref:32 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[3]/div.menu__item-inner/button.menu__toggle-submenu
37
- LINK "Books" @ref:33 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[1]/a
38
- LINK "Movies" @ref:34 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[2]/a
39
- LINK "Television" @ref:35 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[3]/a
40
- LINK "Pop Culture" @ref:36 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[4]/a
41
- LINK "Food" @ref:37 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[5]/a
42
- LINK "Art & Design" @ref:38 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[6]/a
43
- LINK "Performing Arts" @ref:39 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[7]/a
44
- LINK "Life Kit" @ref:40 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[8]/a
45
- LINK "Gaming" @ref:41 /div.menu__inner/ul.menu__list/li.menu__item[3]/ul/li[9]/a
46
- LINK "Music" @ref:42 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[4]/div.menu__item-inner/a
47
- BUTTON "Expand/collapse submenu for Music" @ref:43 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[4]/div.menu__item-inner/button.menu__toggle-submenu
48
- LINK "The Best Music of 2025" @ref:44 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[1]/a
49
- LINK "All Songs Considered" @ref:45 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[2]/a
50
- LINK "Tiny Desk" @ref:46 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[3]/a
51
- LINK "Music Features" @ref:47 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[4]/a
52
- LINK "Live Sessions" @ref:48 /div.menu__inner/ul.menu__list/li.menu__item[4]/ul/li[5]/a
53
- LINK "Podcasts & Shows" @ref:49 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[5]/div.menu__item-inner[1]/a
54
- BUTTON "Expand/collapse submenu for Podcasts & Shows" @ref:50 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[5]/div.menu__item-inner[1]/button.menu__toggle-submenu
55
- LINK "Morning Edition" @ref:51 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[1]/a
56
- LINK "Weekend Edition Saturday" @ref:52 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[2]/a
57
- LINK "Weekend Edition Sunday" @ref:53 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[3]/a
58
- LINK "All Things Considered" @ref:54 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[4]/a
59
- LINK "Fresh Air" @ref:55 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[5]/a
60
- LINK "Up First" @ref:56 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[1]/li[6]/a
61
- LINK "Embedded" @ref:57 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[1]/a
62
- LINK "The NPR Politics Podcast" @ref:58 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[2]/a
63
- LINK "Throughline" @ref:59 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[3]/a
64
- LINK "Trump's Terms" @ref:60 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[2]/li[4]/a
65
- LINK "More Podcasts & Shows" @ref:61 /div.menu__inner/ul.menu__list/li.menu__item[5]/ul[3]/li/a
66
- LINK "Search" @ref:62 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[6]/div.menu__item-inner/a#navigation_dropdown-search
67
- LINK "Newsletters" @ref:63 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[7]/div.menu__item-inner/a
68
- LINK "NPR Shop" @ref:64 /section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[8]/div.menu__item-inner/a
69
- LINK "Sign In" @ref:65 /nav.navigation/section#main-menu[1]/div.menu__inner/ul.menu__list/li.menu__item[9]/a
70
- LINK "music" @ref:66 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[1]/a
71
- LINK "The Best Music of 2025" @ref:67 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[2]/a
72
- LINK "All Songs Considered" @ref:68 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[3]/a
73
- LINK "Tiny Desk" @ref:69 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[4]/a
74
- LINK "Music Features" @ref:70 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[5]/a
75
- LINK "Live Sessions" @ref:71 /nav.navigation/section.menu[2]/div.menu__list-wrap/ul.menu__list/li.menu__item[6]/a
76
- LINK "About NPR" @ref:72 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[1]/a
77
- LINK "Diversity" @ref:73 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[2]/a
78
- LINK "Support" @ref:74 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[3]/a
79
- LINK "Careers" @ref:75 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[4]/a
80
- LINK "Press" @ref:76 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[5]/a
81
- LINK "Ethics" @ref:77 /nav.navigation/section.menu[3]/div.menu__list-wrap/ul.menu__list/li.menu__item[6]/a
82
- LINK "Obituaries" @ref:78 /main/div#wrapper[2]/section#main-section/article/h3/a
83
- TEXTBOX @ref:79 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#title4463532[1]
84
- TEXTBOX @ref:80 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#shortTitle4463532[2]
85
- TEXTBOX @ref:81 [type=hidden] /main/div#wrapper[2]/section#main-section/article/input#modelFullUrl4463532[3]
86
- LINK "Morning Edition" @ref:82 /main/div#wrapper[2]/section#main-section/article/div#story-meta[3]/a
87
- BUTTON "Listen· 2:20" @ref:83 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button[1]
88
- BUTTON "Playlist" @ref:84 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button[2]
89
- BUTTON "Toggle more options" @ref:85 /div#wrapper[2]/section#main-section/article/div#headlineaudio[4]/article#res4463533/button
90
- LINK "Download" @ref:86 /article/div#headlineaudio[4]/article#res4463533/ul/li[1]/a
91
- BUTTON "Embed" @ref:87 /article/div#headlineaudio[4]/article#res4463533/ul/li[2]/button
92
- BUTTON @ref:88 /article/div#headlineaudio[4]/article#res4463533/ul/li[2]/button.btn-close
93
- TEXTBOX "Embed" @ref:89 /div#headlineaudio[4]/article#res4463533/ul/li[2]/label/input
94
- BUTTON "Enlarge this image" @ref:90 /div#wrapper[2]/section#main-section/article/div#storytext[5]/div#res111029306/button
95
- BUTTON "Facebook" @ref:91 /div#wrapper[2]/section#main-section/article/ul/li[1]/button
96
- BUTTON "Flipboard" @ref:92 /div#wrapper[2]/section#main-section/article/ul/li[2]/button
97
- BUTTON "Email" @ref:93 /div#wrapper[2]/section#main-section/article/ul/li[3]/button
98
- LINK "2 police officers relive Jan. 6 through their o..." @ref:94 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i777z7prn3d5
99
- LINK "NPR Investigation: January 6, 2021" @ref:95 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i777uhg12w6k
100
- LINK "2 police officers relive Jan. 6 through their o..." @ref:96 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778nvq3iw4f
101
- LINK "Venezuela's Machado says she presented her Nobe..." @ref:97 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778steu0r2v
102
- LINK "Politics" @ref:98 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i778dtnhrs2b
103
- LINK "Venezuela's Machado says she presented her Nobe..." @ref:99 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778mk02q9fc
104
- LINK "NPR+ | The News Roundup For October 24, 2025" @ref:100 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778eatsbvmq
105
- LINK "NPR+ | The News Roundup For October 24, 2025" @ref:101 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778s092j0uk
106
- LINK "House Republicans are investigating Jan. 6. NPR..." @ref:102 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778lm23riyj
107
- LINK "Investigations" @ref:103 /section#main-section/article/aside[1]/article/h5/a#cXLinkIdmkh7i778owydaowv
108
- LINK "House Republicans are investigating Jan. 6. NPR..." @ref:104 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i778v02jcv5n
109
- LINK "NPR+ | The News Roundup For November 14, 2025" @ref:105 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i778717wtpvk
110
- LINK "NPR+ | The News Roundup For November 14, 2025" @ref:106 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i779i4igybi0
111
- LINK "NPR+ | The News Roundup For January 9, 2026" @ref:107 /div#wrapper[2]/section#main-section/article/aside[1]/article/a#cXLinkIdmkh7i779kahdox7s
112
- LINK "NPR+ | The News Roundup For January 9, 2026" @ref:108 /section#main-section/article/aside[1]/article/h4/a#cXLinkIdmkh7i779676idjeh
113
- LINK "claudette colvin obituary montgomery bus civil ..." @ref:109 /section#main-section/article/aside[2]/section[1]/article/a
114
- LINK "Obituaries" @ref:110 /article/aside[2]/section[1]/article/h5/a
115
- LINK "Claudette Colvin, who refused to move seats on ..." @ref:111 /article/aside[2]/section[1]/article/h4/a
116
- LINK "scott adams dilbert dies" @ref:112 /section#main-section/article/aside[2]/section[1]/article/a
117
- LINK "Obituaries" @ref:113 /article/aside[2]/section[1]/article/h5/a
118
- LINK "Scott Adams, the controversial cartoonist behin..." @ref:114 /article/aside[2]/section[1]/article/h4/a
119
- LINK "bob weir grateful dead obituary" @ref:115 /section#main-section/article/aside[2]/section[1]/article/a
120
- LINK "Obituaries" @ref:116 /article/aside[2]/section[1]/article/h5/a
121
- LINK "Bob Weir, guitarist and founding member of the ..." @ref:117 /article/aside[2]/section[1]/article/h4/a
122
- LINK "cia turncoat aldrich ames dies at 84" @ref:118 /section#main-section/article/aside[2]/section[1]/article/a
123
- LINK "Obituaries" @ref:119 /article/aside[2]/section[1]/article/h5/a
124
- LINK "CIA turncoat Aldrich Ames, who sold U.S. secret..." @ref:120 /article/aside[2]/section[1]/article/h4/a
125
- LINK "bela tarr filmmaker dead" @ref:121 /section#main-section/article/aside[2]/section[1]/article/a
126
- LINK "Obituaries" @ref:122 /article/aside[2]/section[1]/article/h5/a
127
- LINK "Hungarian filmmaker Béla Tarr — known for bleak..." @ref:123 /article/aside[2]/section[1]/article/h4/a
128
- LINK "edith renfrow smith pioneer and witness to hist..." @ref:124 /section#main-section/article/aside[2]/section[1]/article/a
129
- LINK "Obituaries" @ref:125 /article/aside[2]/section[1]/article/h5/a
130
- LINK "Edith Renfrow Smith, pioneer and witness to his..." @ref:126 /article/aside[2]/section[1]/article/h4/a
131
- LINK "trump post online minnesota social media ice" @ref:127 /section#main-section/article/aside[2]/section[2]/article/a
132
- LINK "Politics" @ref:128 /article/aside[2]/section[2]/article/h5/a
133
- LINK "Minnesota shows what happens when governing and..." @ref:129 /article/aside[2]/section[2]/article/h4/a
134
- LINK "jan 6 house gop capitol trump" @ref:130 /section#main-section/article/aside[2]/section[2]/article/a
135
- LINK "Investigations" @ref:131 /article/aside[2]/section[2]/article/h5/a
136
- LINK "House Republicans are investigating Jan. 6. NPR..." @ref:132 /article/aside[2]/section[2]/article/h4/a
137
- LINK "a knight of the seven kingdoms review hbo game ..." @ref:133 /section#main-section/article/aside[2]/section[2]/article/a
138
- LINK "Pop Culture Happy Hour" @ref:134 /article/aside[2]/section[2]/article/h5/a
139
- LINK "'A Knight of the Seven Kingdoms' is 'Game of Th..." @ref:135 /article/aside[2]/section[2]/article/h4/a
140
- LINK "minneapolis insurrection act trump threats" @ref:136 /section#main-section/article/aside[2]/section[2]/article/a
141
- LINK "Explainer" @ref:137 /article/aside[2]/section[2]/article/h5/a
142
- LINK "Trump threatened to invoke the Insurrection Act..." @ref:138 /article/aside[2]/section[2]/article/h4/a
143
- LINK "verizon outage what happened" @ref:139 /section#main-section/article/aside[2]/section[2]/article/a
144
- LINK "Business" @ref:140 /article/aside[2]/section[2]/article/h5/a
145
- LINK "Verizon just had a big outage. Here's what we know" @ref:141 /article/aside[2]/section[2]/article/h4/a
146
- LINK "up first newsletter minneapolis protests venezu..." @ref:142 /section#main-section/article/aside[2]/section[2]/article/a
147
- LINK "Up First Newsletter" @ref:143 /article/aside[2]/section[2]/article/h5/a
148
- LINK "Trump threatens military action in Minneapolis...." @ref:144 /article/aside[2]/section[2]/article/h4/a
149
- LINK "trumprx pharma drug price deals list prices" @ref:145 /section#main-section/article/aside[2]/section[3]/article/a
150
- LINK "Health" @ref:146 /article/aside[2]/section[3]/article/h5/a
151
- LINK "Trump struck deals with 16 drug companies. But ..." @ref:147 /article/aside[2]/section[3]/article/h4/a
152
- LINK "hospice cervical cancer prevention" @ref:148 /section#main-section/article/aside[2]/section[3]/article/a
153
- LINK "Global Health" @ref:149 /article/aside[2]/section[3]/article/h5/a
154
- LINK "This hospice has a bold new mission: saving lives" @ref:150 /article/aside[2]/section[3]/article/h4/a
155
- LINK "canada cut tariff chinese evs canadian farm pro..." @ref:151 /section#main-section/article/aside[2]/section[3]/article/a
156
- LINK "Business" @ref:152 /article/aside[2]/section[3]/article/h5/a
157
- LINK "Canada agrees to cut tariff on Chinese EVs in r..." @ref:153 /article/aside[2]/section[3]/article/h4/a
158
- LINK "greenland denmark nasa grok star trek golden gl..." @ref:154 /section#main-section/article/aside[2]/section[3]/article/a
159
- LINK "The NPR news quiz" @ref:155 /article/aside[2]/section[3]/article/h5/a
160
- LINK "What do eggs, Grok and Greenland have in common..." @ref:156 /article/aside[2]/section[3]/article/h4/a
161
- LINK "immigration minnesota democrats navigate resist..." @ref:157 /section#main-section/article/aside[2]/section[3]/article/a
162
- LINK "Politics" @ref:158 /article/aside[2]/section[3]/article/h5/a
163
- LINK "With limited political power, Minnesota Democra..." @ref:159 /article/aside[2]/section[3]/article/h4/a
164
- LINK "fema cuts jobs trump" @ref:160 /section#main-section/article/aside[2]/section[3]/article/a
165
- LINK "Climate" @ref:161 /article/aside[2]/section[3]/article/h5/a
166
- LINK "FEMA is getting rid of thousands of workers in ..." @ref:162 /article/aside[2]/section[3]/article/h4/a
167
- LINK "Home" @ref:163 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
168
- LINK "News" @ref:164 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
169
- LINK "Culture" @ref:165 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
170
- LINK "Music" @ref:166 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
171
- LINK "Podcasts & Shows" @ref:167 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
172
- LINK "Newsletters" @ref:168 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
173
- LINK "Facebook" @ref:169 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
174
- LINK "Instagram" @ref:170 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
175
- LINK "Press" @ref:171 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
176
- LINK "Public Editor" @ref:172 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
177
- LINK "Corrections" @ref:173 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[6]/a
178
- LINK "Transcripts" @ref:174 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[7]/a
179
- LINK "Contact & Help" @ref:175 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[8]/a
180
- LINK "Overview" @ref:176 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
181
- LINK "Diversity" @ref:177 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
182
- LINK "NPR Network" @ref:178 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
183
- LINK "Accessibility" @ref:179 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
184
- LINK "Ethics" @ref:180 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
185
- LINK "Finances" @ref:181 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[6]/a
186
- LINK "Support Public Radio" @ref:182 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
187
- LINK "Sponsor NPR" @ref:183 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
188
- LINK "NPR Careers" @ref:184 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
189
- LINK "NPR Shop" @ref:185 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
190
- LINK "NPR Extra" @ref:186 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[5]/a
191
- LINK "Terms of Use" @ref:187 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[1]/a
192
- LINK "Privacy" @ref:188 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[2]/a
193
- LINK "Your Privacy Choices" @ref:189 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[3]/a
194
- LINK "Text Only" @ref:190 /div#wrapper[2]/section#main-section/footer#npr-footer/ul/li[4]/a
195
- LINK "Become an NPR sponsor" @ref:191 /main/div#wrapper[2]/div#main-sidebar/aside#ad-standard-wrap/a
196
- LINK "Get NPR+" @ref:192 /main/section[2]/a
197
- LINK "Sign In" @ref:193 /main/section[2]/a
198
- BUTTON "Close modal" @ref:194 /main/section[2]/button#npr-plus-access__close
199
- BUTTON "Cookies Settings" @ref:195 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-button-group-parent[2]/div#onetrust-button-group/button#onetrust-pc-btn-handler[1]
200
- BUTTON "Accept All Cookies" @ref:196 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-button-group-parent[2]/div#onetrust-button-group/button#onetrust-accept-btn-handler[2]
201
- BUTTON "Close" @ref:197 /div#onetrust-consent-sdk[5]/div#onetrust-banner-sdk[2]/div#onetrust-close-btn-container[2]/button
202
- BUTTON "Close preference center" @ref:198 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button#close-pc-btn-handler
203
- BUTTON "Allow All" @ref:199 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/button
204
- BUTTON "Strictly Necessary or Essential Cookies Always ..." @ref:200 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
205
- BUTTON "Performance and Analytics Cookies" @ref:201 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
206
- SWITCH "Performance and Analytics Cookies" @ref:202 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0002
207
- BUTTON "Functional Cookies" @ref:203 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
208
- SWITCH "Functional Cookies" @ref:204 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0003
209
- BUTTON "Targeting and Sponsor Cookies" @ref:205 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/button
210
- SWITCH "Targeting and Sponsor Cookies" @ref:206 [type=checkbox] (checked) /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/div#ot-pc-content[2]/section/input#ot-group-id-C0004
211
- BUTTON "Back" @ref:207 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/div#ot-lst-title[1]/button
212
- TEXTBOX "Cookie list search" @ref:208 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/input#vendor-search-handler
213
- BUTTON "Filter" @ref:209 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/button#filter-btn-handler
214
- BUTTON "Clear" @ref:210 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#clear-filters-handler
215
- CHECKBOX "checkbox label" @ref:211 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/input#chkbox-id
216
- BUTTON "Apply" @ref:212 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-apply-handler[1]
217
- BUTTON "Cancel" @ref:213 /div#onetrust-pc-sdk[3]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-cancel-handler[2]
218
- CHECKBOX "checkbox label" @ref:214 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-hostcntr[1]/input
219
- CHECKBOX "checkbox label" @ref:215 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-vencntr[2]/input
220
- CHECKBOX "checkbox label" @ref:216 [type=checkbox] /div#onetrust-pc-sdk[3]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-licntr[3]/input#select-all-vendor-leg-handler
221
- BUTTON "Reject All" @ref:217 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button[1]
222
- BUTTON "Confirm My Choices" @ref:218 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/button[2]
223
- LINK "Powered by OneTrust Opens in a new Tab" @ref:219 /div#onetrust-consent-sdk[5]/div#onetrust-pc-sdk[3]/a
224
- TEXTBOX @ref:220 /textarea#g-recaptcha-response-100000