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.
- package/package.json +8 -9
- package/packages/core/dist/actions.d.ts +97 -0
- package/packages/core/dist/actions.js +940 -0
- package/packages/core/dist/errors.d.ts +138 -0
- package/packages/core/dist/errors.js +157 -0
- package/packages/core/dist/index.d.ts +120 -0
- package/packages/core/dist/index.js +134 -0
- package/packages/core/dist/ref-map.d.ts +16 -0
- package/packages/core/dist/ref-map.js +91 -0
- package/packages/core/dist/snapshot.d.ts +37 -0
- package/packages/core/dist/snapshot.js +751 -0
- package/packages/core/dist/types.d.ts +396 -0
- package/packages/core/dist/types.js +7 -0
- package/packages/extension/dist/background.d.ts +227 -0
- package/packages/extension/dist/background.js +737 -0
- package/packages/extension/dist/content.d.ts +18 -0
- package/packages/extension/dist/content.js +149 -0
- package/packages/extension/dist/index.d.ts +228 -0
- package/packages/extension/dist/index.js +350 -0
- package/packages/extension/dist/session-manager.d.ts +87 -0
- package/packages/extension/dist/session-manager.js +322 -0
- package/packages/extension/{src/session-types.ts → dist/session-types.d.ts} +113 -144
- package/packages/extension/dist/session-types.js +5 -0
- package/packages/extension/dist/types.d.ts +88 -0
- package/packages/extension/dist/types.js +7 -0
- package/CLAUDE.md +0 -230
- package/SKILL.md +0 -143
- package/SNAPSHOT_IMPROVEMENTS.md +0 -302
- package/USAGE.md +0 -146
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/docs/browser-cli-design.md +0 -500
- package/examples/chrome-extension/CHANGELOG.md +0 -210
- package/examples/chrome-extension/DEBUG.md +0 -231
- package/examples/chrome-extension/ERROR_FIXED.md +0 -147
- package/examples/chrome-extension/QUICK_TEST.md +0 -189
- package/examples/chrome-extension/README.md +0 -149
- package/examples/chrome-extension/SESSION_ONLY_MODE.md +0 -305
- package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +0 -97
- package/examples/chrome-extension/build.js +0 -43
- package/examples/chrome-extension/manifest.json +0 -37
- package/examples/chrome-extension/package-lock.json +0 -1063
- package/examples/chrome-extension/package.json +0 -21
- package/examples/chrome-extension/popup.html +0 -195
- package/examples/chrome-extension/src/background.ts +0 -12
- package/examples/chrome-extension/src/content.ts +0 -7
- package/examples/chrome-extension/src/popup.ts +0 -303
- package/examples/chrome-extension/src/scenario-google-github.ts +0 -389
- package/examples/chrome-extension/test-page.html +0 -127
- package/examples/chrome-extension/tests/README.md +0 -206
- package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +0 -380
- package/examples/chrome-extension/tsconfig.json +0 -14
- package/examples/snapshots/README.md +0 -207
- package/examples/snapshots/amazon-com-detail.html +0 -9528
- package/examples/snapshots/amazon-com-detail.snapshot.txt +0 -997
- package/examples/snapshots/convert-snapshots.ts +0 -97
- package/examples/snapshots/edition-cnn-com.html +0 -13292
- package/examples/snapshots/edition-cnn-com.snapshot.txt +0 -562
- package/examples/snapshots/github-com-microsoft-vscode.html +0 -2916
- package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +0 -455
- package/examples/snapshots/google-search.html +0 -20012
- package/examples/snapshots/google-search.snapshot.txt +0 -195
- package/examples/snapshots/metadata.json +0 -86
- package/examples/snapshots/npr-org-templates.html +0 -2031
- package/examples/snapshots/npr-org-templates.snapshot.txt +0 -224
- package/examples/snapshots/stackoverflow-com.html +0 -5216
- package/examples/snapshots/stackoverflow-com.snapshot.txt +0 -2404
- package/examples/snapshots/test-all-mode.html +0 -46
- package/examples/snapshots/test-all-mode.snapshot.txt +0 -5
- package/examples/snapshots/validate.test.ts +0 -296
- package/packages/cli/package.json +0 -42
- package/packages/cli/src/__tests__/cli.test.ts +0 -434
- package/packages/cli/src/__tests__/errors.test.ts +0 -226
- package/packages/cli/src/__tests__/executor.test.ts +0 -275
- package/packages/cli/src/__tests__/formatter.test.ts +0 -260
- package/packages/cli/src/__tests__/parser.test.ts +0 -288
- package/packages/cli/src/__tests__/suggestions.test.ts +0 -255
- package/packages/cli/src/commands/back.ts +0 -22
- package/packages/cli/src/commands/check.ts +0 -33
- package/packages/cli/src/commands/clear.ts +0 -33
- package/packages/cli/src/commands/click.ts +0 -32
- package/packages/cli/src/commands/closetab.ts +0 -31
- package/packages/cli/src/commands/eval.ts +0 -41
- package/packages/cli/src/commands/fill.ts +0 -30
- package/packages/cli/src/commands/focus.ts +0 -33
- package/packages/cli/src/commands/forward.ts +0 -22
- package/packages/cli/src/commands/goto.ts +0 -34
- package/packages/cli/src/commands/help.ts +0 -162
- package/packages/cli/src/commands/hover.ts +0 -34
- package/packages/cli/src/commands/index.ts +0 -129
- package/packages/cli/src/commands/newtab.ts +0 -35
- package/packages/cli/src/commands/press.ts +0 -40
- package/packages/cli/src/commands/reload.ts +0 -25
- package/packages/cli/src/commands/screenshot.ts +0 -27
- package/packages/cli/src/commands/scroll.ts +0 -64
- package/packages/cli/src/commands/select.ts +0 -35
- package/packages/cli/src/commands/snapshot.ts +0 -21
- package/packages/cli/src/commands/tab.ts +0 -32
- package/packages/cli/src/commands/tabs.ts +0 -26
- package/packages/cli/src/commands/text.ts +0 -27
- package/packages/cli/src/commands/title.ts +0 -17
- package/packages/cli/src/commands/type.ts +0 -38
- package/packages/cli/src/commands/uncheck.ts +0 -33
- package/packages/cli/src/commands/url.ts +0 -17
- package/packages/cli/src/commands/wait.ts +0 -54
- package/packages/cli/src/errors.ts +0 -164
- package/packages/cli/src/executor.ts +0 -68
- package/packages/cli/src/formatter.ts +0 -215
- package/packages/cli/src/index.ts +0 -257
- package/packages/cli/src/parser.ts +0 -195
- package/packages/cli/src/suggestions.ts +0 -207
- package/packages/cli/src/terminal/Terminal.ts +0 -365
- package/packages/cli/src/terminal/index.ts +0 -5
- package/packages/cli/src/types.ts +0 -155
- package/packages/cli/tsconfig.json +0 -20
- package/packages/core/package.json +0 -35
- package/packages/core/src/actions.ts +0 -1210
- package/packages/core/src/errors.ts +0 -296
- package/packages/core/src/index.test.ts +0 -638
- package/packages/core/src/index.ts +0 -220
- package/packages/core/src/ref-map.ts +0 -107
- package/packages/core/src/snapshot.ts +0 -873
- package/packages/core/src/types.ts +0 -536
- package/packages/core/tsconfig.json +0 -23
- package/packages/extension/README.md +0 -129
- package/packages/extension/package.json +0 -43
- package/packages/extension/src/background.ts +0 -888
- package/packages/extension/src/content.ts +0 -172
- package/packages/extension/src/index.ts +0 -579
- package/packages/extension/src/session-manager.ts +0 -385
- package/packages/extension/src/types.ts +0 -162
- package/packages/extension/tsconfig.json +0 -28
- package/src/index.ts +0 -64
- package/tsconfig.build.json +0 -12
- package/tsconfig.json +0 -26
- package/vitest.config.ts +0 -13
|
@@ -1,562 +0,0 @@
|
|
|
1
|
-
PAGE: http://localhost/ | Breaking News, Latest News and Videos | CNN | viewport=1024x768
|
|
2
|
-
SNAPSHOT: elements=3389 refs=559
|
|
3
|
-
|
|
4
|
-
RADIO "Bad" @ref:0 [type=radio] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/input#ad-feedback__0-bad
|
|
5
|
-
RADIO "Not Good" @ref:1 [type=radio] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/input#ad-feedback__0-not-good
|
|
6
|
-
RADIO "Okay" @ref:2 [type=radio] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/input#ad-feedback__0-okay
|
|
7
|
-
RADIO "Good" @ref:3 [type=radio] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/input#ad-feedback__0-good
|
|
8
|
-
RADIO "Great" @ref:4 [type=radio] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/input#ad-feedback__0-great
|
|
9
|
-
CHECKBOX "Toggle Button" @ref:5 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label/input
|
|
10
|
-
CHECKBOX "Video player was slow to load content" @ref:6 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[1]/input
|
|
11
|
-
CHECKBOX "Video content never loaded" @ref:7 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[2]/input
|
|
12
|
-
CHECKBOX "Ad froze or did not finish loading" @ref:8 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[3]/input
|
|
13
|
-
CHECKBOX "Video content did not start after ad" @ref:9 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[4]/input
|
|
14
|
-
CHECKBOX "Audio on ad was too loud" @ref:10 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[5]/input
|
|
15
|
-
CHECKBOX "Other issues" @ref:11 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[6]/input
|
|
16
|
-
CHECKBOX "Ad never loaded" @ref:12 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[1]/input
|
|
17
|
-
CHECKBOX "Ad prevented/slowed the page from loading" @ref:13 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[2]/input
|
|
18
|
-
CHECKBOX "Content moved around while ad loaded" @ref:14 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[3]/input
|
|
19
|
-
CHECKBOX "Ad was repetitive to ads I've seen previously" @ref:15 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[4]/input
|
|
20
|
-
CHECKBOX "Other issues" @ref:16 [type=checkbox] /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/label[5]/input
|
|
21
|
-
TEXTBOX @ref:17 /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/textarea
|
|
22
|
-
BUTTON "Cancel" @ref:18 /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/button#ad-feedback__cancel[1]
|
|
23
|
-
BUTTON "Submit" @ref:19 (disabled) /header.header__wrapper-outer/div.header__wrapper-inner/div#ad-feedback__modal-overlay[1]/form/button#ad-feedback__submit[2]
|
|
24
|
-
BUTTON "Open Menu Icon" @ref:20 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__left[1]/button#headerMenuIcon[1]
|
|
25
|
-
BUTTON "Close Menu Icon" @ref:21 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__left[1]/button#headerCloseIcon[2]
|
|
26
|
-
LINK "CNN logo" @ref:22 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__left[1]/a
|
|
27
|
-
LINK "US" @ref:23 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[1]/a.header__nav-item-link
|
|
28
|
-
LINK "World" @ref:24 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[2]/a.header__nav-item-link
|
|
29
|
-
LINK "Politics" @ref:25 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[3]/a.header__nav-item-link
|
|
30
|
-
LINK "Business" @ref:26 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[4]/a.header__nav-item-link
|
|
31
|
-
LINK "Health" @ref:27 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[5]/a.header__nav-item-link
|
|
32
|
-
LINK "Entertainment" @ref:28 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[6]/a.header__nav-item-link
|
|
33
|
-
LINK "Style" @ref:29 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[7]/a.header__nav-item-link
|
|
34
|
-
LINK "Travel" @ref:30 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[8]/a.header__nav-item-link
|
|
35
|
-
LINK "Sports" @ref:31 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[9]/a.header__nav-item-link
|
|
36
|
-
LINK "Science" @ref:32 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[10]/a.header__nav-item-link
|
|
37
|
-
LINK "Climate" @ref:33 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[11]/a.header__nav-item-link
|
|
38
|
-
LINK "Weather" @ref:34 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[12]/a.header__nav-item-link
|
|
39
|
-
LINK "Ukraine-Russia War" @ref:35 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[13]/a.header__nav-item-link
|
|
40
|
-
LINK "Israel-Hamas War" @ref:36 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[14]/a.header__nav-item-link
|
|
41
|
-
LINK "Games" @ref:37 /div.header__container[1]/div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-item[15]/a.header__nav-item-link
|
|
42
|
-
LINK "US" @ref:38 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[1]
|
|
43
|
-
LINK "World" @ref:39 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[2]
|
|
44
|
-
LINK "Politics" @ref:40 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[3]
|
|
45
|
-
LINK "Business" @ref:41 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[4]
|
|
46
|
-
LINK "Health" @ref:42 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[5]
|
|
47
|
-
LINK "Entertainment" @ref:43 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[6]
|
|
48
|
-
LINK "Style" @ref:44 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[7]
|
|
49
|
-
LINK "Travel" @ref:45 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[8]
|
|
50
|
-
LINK "Sports" @ref:46 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[9]
|
|
51
|
-
LINK "Science" @ref:47 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[10]
|
|
52
|
-
LINK "Climate" @ref:48 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[11]
|
|
53
|
-
LINK "Weather" @ref:49 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[12]
|
|
54
|
-
LINK "Ukraine-Russia War" @ref:50 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[13]
|
|
55
|
-
LINK "Israel-Hamas War" @ref:51 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[14]
|
|
56
|
-
LINK "Games" @ref:52 /div.header__left[1]/nav.header__nav/div.header__nav-container/div.header__nav-more[16]/div.header__nav-item-dropdown/a[15]
|
|
57
|
-
LINK "Watch" @ref:53 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__right[2]/a.header__video-link[1]
|
|
58
|
-
LINK "Listen" @ref:54 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__right[2]/a.header__audio-link[2]
|
|
59
|
-
LINK "Live TV" @ref:55 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__right[2]/a.header__live-tv-link[3]
|
|
60
|
-
BUTTON "Search Icon" @ref:56 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__right[2]/button#headerSearchIcon[1]
|
|
61
|
-
LINK "Subscribe Button" @ref:57 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div.header__container[1]/div.header__right[2]/button#headerSubscribeButton[2]
|
|
62
|
-
BUTTON "User Account Nav Button" @ref:58 /div.header__subnav-mount/div.header__container[1]/div.header__right[2]/div#desktop-header-account-nav/nav/button[1]
|
|
63
|
-
LINK "User Account Log In Button" @ref:59 /div.header__subnav-mount/div.header__container[1]/div.header__right[2]/div#desktop-header-account-nav/nav/button[2]
|
|
64
|
-
LINK "User Account Log In Button" @ref:60 /div.header__subnav-mount/div.header__container[1]/div.header__right[2]/div#desktop-header-account-nav/nav/button[3]
|
|
65
|
-
LINK "Settings" @ref:61 /div.header__right[2]/div#desktop-header-account-nav/nav/ul/li[1]/a
|
|
66
|
-
LINK "Newsletters" @ref:62 /div.header__right[2]/div#desktop-header-account-nav/nav/ul/li[2]/a
|
|
67
|
-
LINK "Topics you follow" @ref:63 /div.header__right[2]/div#desktop-header-account-nav/nav/ul/li[3]/a
|
|
68
|
-
LINK "Sign out" @ref:64 /div.header__right[2]/div#desktop-header-account-nav/nav/ul/li[4]/a
|
|
69
|
-
LINK "log in" @ref:65 /div.header__subnav-mount/div.header__container[1]/div.header__right[2]/div#desktop-header-account-nav/nav/a
|
|
70
|
-
TEXTBOX "Search" @ref:66 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div.search-bar[1]/form.search-bar__form/input.search-bar__input
|
|
71
|
-
BUTTON "Submit" @ref:67 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div.search-bar[1]/form.search-bar__form/button.search-bar__submit
|
|
72
|
-
BUTTON "User Account Nav Button" @ref:68 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div#mobile-header-account-nav[2]/nav/button[1]
|
|
73
|
-
LINK "User Account Log In Button" @ref:69 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div#mobile-header-account-nav[2]/nav/button[2]
|
|
74
|
-
LINK "User Account Log In Button" @ref:70 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div#mobile-header-account-nav[2]/nav/button[3]
|
|
75
|
-
LINK "Settings" @ref:71 /div.header__container/div#mobile-header-account-nav[2]/nav/ul/li[1]/a
|
|
76
|
-
LINK "Newsletters" @ref:72 /div.header__container/div#mobile-header-account-nav[2]/nav/ul/li[2]/a
|
|
77
|
-
LINK "Topics you follow" @ref:73 /div.header__container/div#mobile-header-account-nav[2]/nav/ul/li[3]/a
|
|
78
|
-
LINK "Sign out" @ref:74 /div.header__container/div#mobile-header-account-nav[2]/nav/ul/li[4]/a
|
|
79
|
-
LINK "log in" @ref:75 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/div#mobile-header-account-nav[2]/nav/a
|
|
80
|
-
LINK "Live TV" @ref:76 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div#headerSubNav[2]/div.header__container/a.header__live-tv-link[1]
|
|
81
|
-
LINK "Listen" @ref:77 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div#headerSubNav[2]/div.header__container/a.header__audio-link[2]
|
|
82
|
-
LINK "Watch" @ref:78 /nav#pageHeader/div.header__inner/div.header__subnav-mount/div#headerSubNav[2]/div.header__container/a.header__video-link[3]
|
|
83
|
-
LINK "US Edition Link" @ref:79 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/div.header__editionizer-item[2]/a.header__editionizer-link
|
|
84
|
-
LINK "International Edition Link" @ref:80 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/div.header__editionizer-item[3]/a.header__editionizer-link
|
|
85
|
-
LINK "Arabic Edition Link" @ref:81 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/div.header__editionizer-item[4]/a.header__editionizer-link
|
|
86
|
-
LINK "Español Edition Link" @ref:82 /div.header__subnav-mount/div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/div.header__editionizer-item[5]/a.header__editionizer-link
|
|
87
|
-
LINK "US" @ref:83 /div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/ul.header__editionizer-menu/li.header__editionizer-item[1]/a.header__editionizer-link
|
|
88
|
-
LINK "International" @ref:84 /div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/ul.header__editionizer-menu/li.header__editionizer-item[2]/a.header__editionizer-link
|
|
89
|
-
LINK "Arabic" @ref:85 /div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/ul.header__editionizer-menu/li.header__editionizer-item[3]/a.header__editionizer-link
|
|
90
|
-
LINK "Español" @ref:86 /div#headerSubNav[2]/div.header__container/nav.header__editionizer[1]/ul.header__editionizer-menu/li.header__editionizer-item[4]/a.header__editionizer-link
|
|
91
|
-
LINK "World" @ref:87 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[1]/a
|
|
92
|
-
LINK "World Africa" @ref:88 /nav[2]/ul/li[1]/ul/li[1]/a
|
|
93
|
-
LINK "World Americas" @ref:89 /nav[2]/ul/li[1]/ul/li[2]/a
|
|
94
|
-
LINK "World Asia" @ref:90 /nav[2]/ul/li[1]/ul/li[3]/a
|
|
95
|
-
LINK "World Australia" @ref:91 /nav[2]/ul/li[1]/ul/li[4]/a
|
|
96
|
-
LINK "World China" @ref:92 /nav[2]/ul/li[1]/ul/li[5]/a
|
|
97
|
-
LINK "World Europe" @ref:93 /nav[2]/ul/li[1]/ul/li[6]/a
|
|
98
|
-
LINK "World India" @ref:94 /nav[2]/ul/li[1]/ul/li[7]/a
|
|
99
|
-
LINK "World Middle East" @ref:95 /nav[2]/ul/li[1]/ul/li[8]/a
|
|
100
|
-
LINK "World United Kingdom" @ref:96 /nav[2]/ul/li[1]/ul/li[9]/a
|
|
101
|
-
LINK "US Politics" @ref:97 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[2]/a
|
|
102
|
-
LINK "US Politics Trump" @ref:98 /nav[2]/ul/li[2]/ul/li[1]/a
|
|
103
|
-
LINK "US Politics Facts First" @ref:99 /nav[2]/ul/li[2]/ul/li[2]/a
|
|
104
|
-
LINK "US Politics CNN Polls" @ref:100 /nav[2]/ul/li[2]/ul/li[3]/a
|
|
105
|
-
LINK "US Politics 2025 Elections" @ref:101 /nav[2]/ul/li[2]/ul/li[4]/a
|
|
106
|
-
LINK "US Politics Redistricting Tracker" @ref:102 /nav[2]/ul/li[2]/ul/li[5]/a
|
|
107
|
-
LINK "Business" @ref:103 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[3]/a
|
|
108
|
-
LINK "Business Tech" @ref:104 /nav[2]/ul/li[3]/ul/li[1]/a
|
|
109
|
-
LINK "Business Media" @ref:105 /nav[2]/ul/li[3]/ul/li[2]/a
|
|
110
|
-
LINK "Business Calculators" @ref:106 /nav[2]/ul/li[3]/ul/li[3]/a
|
|
111
|
-
LINK "Business Videos" @ref:107 /nav[2]/ul/li[3]/ul/li[4]/a
|
|
112
|
-
LINK "Markets" @ref:108 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[4]/a
|
|
113
|
-
LINK "Markets Pre-markets" @ref:109 /nav[2]/ul/li[4]/ul/li[1]/a
|
|
114
|
-
LINK "Markets After-Hours" @ref:110 /nav[2]/ul/li[4]/ul/li[2]/a
|
|
115
|
-
LINK "Markets Fear & Greed" @ref:111 /nav[2]/ul/li[4]/ul/li[3]/a
|
|
116
|
-
LINK "Markets Investing" @ref:112 /nav[2]/ul/li[4]/ul/li[4]/a
|
|
117
|
-
LINK "Markets Markets Now" @ref:113 /nav[2]/ul/li[4]/ul/li[5]/a
|
|
118
|
-
LINK "Markets Nightcap" @ref:114 /nav[2]/ul/li[4]/ul/li[6]/a
|
|
119
|
-
LINK "Health" @ref:115 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[5]/a
|
|
120
|
-
LINK "Health Life, But Better" @ref:116 /nav[2]/ul/li[5]/ul/li[1]/a
|
|
121
|
-
LINK "Health Fitness" @ref:117 /nav[2]/ul/li[5]/ul/li[2]/a
|
|
122
|
-
LINK "Health Food" @ref:118 /nav[2]/ul/li[5]/ul/li[3]/a
|
|
123
|
-
LINK "Health Sleep" @ref:119 /nav[2]/ul/li[5]/ul/li[4]/a
|
|
124
|
-
LINK "Health Mindfulness" @ref:120 /nav[2]/ul/li[5]/ul/li[5]/a
|
|
125
|
-
LINK "Health Relationships" @ref:121 /nav[2]/ul/li[5]/ul/li[6]/a
|
|
126
|
-
LINK "Entertainment" @ref:122 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[6]/a
|
|
127
|
-
LINK "Entertainment Movies" @ref:123 /nav[2]/ul/li[6]/ul/li[1]/a
|
|
128
|
-
LINK "Entertainment Television" @ref:124 /nav[2]/ul/li[6]/ul/li[2]/a
|
|
129
|
-
LINK "Entertainment Celebrity" @ref:125 /nav[2]/ul/li[6]/ul/li[3]/a
|
|
130
|
-
LINK "Tech" @ref:126 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[7]/a
|
|
131
|
-
LINK "Tech Innovate" @ref:127 /nav[2]/ul/li[7]/ul/li[1]/a
|
|
132
|
-
LINK "Tech Foreseeable Future" @ref:128 /nav[2]/ul/li[7]/ul/li[2]/a
|
|
133
|
-
LINK "Tech Mission: Ahead" @ref:129 /nav[2]/ul/li[7]/ul/li[3]/a
|
|
134
|
-
LINK "Tech Work Transformed" @ref:130 /nav[2]/ul/li[7]/ul/li[4]/a
|
|
135
|
-
LINK "Tech Innovative Cities" @ref:131 /nav[2]/ul/li[7]/ul/li[5]/a
|
|
136
|
-
LINK "Style" @ref:132 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[8]/a
|
|
137
|
-
LINK "Style Arts" @ref:133 /nav[2]/ul/li[8]/ul/li[1]/a
|
|
138
|
-
LINK "Style Design" @ref:134 /nav[2]/ul/li[8]/ul/li[2]/a
|
|
139
|
-
LINK "Style Fashion" @ref:135 /nav[2]/ul/li[8]/ul/li[3]/a
|
|
140
|
-
LINK "Style Architecture" @ref:136 /nav[2]/ul/li[8]/ul/li[4]/a
|
|
141
|
-
LINK "Style Luxury" @ref:137 /nav[2]/ul/li[8]/ul/li[5]/a
|
|
142
|
-
LINK "Style Beauty" @ref:138 /nav[2]/ul/li[8]/ul/li[6]/a
|
|
143
|
-
LINK "Style Video" @ref:139 /nav[2]/ul/li[8]/ul/li[7]/a
|
|
144
|
-
LINK "Travel" @ref:140 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[9]/a
|
|
145
|
-
LINK "Travel Destinations" @ref:141 /nav[2]/ul/li[9]/ul/li[1]/a
|
|
146
|
-
LINK "Travel Food & Drink" @ref:142 /nav[2]/ul/li[9]/ul/li[2]/a
|
|
147
|
-
LINK "Travel Stay" @ref:143 /nav[2]/ul/li[9]/ul/li[3]/a
|
|
148
|
-
LINK "Travel News" @ref:144 /nav[2]/ul/li[9]/ul/li[4]/a
|
|
149
|
-
LINK "Travel Videos" @ref:145 /nav[2]/ul/li[9]/ul/li[5]/a
|
|
150
|
-
LINK "Sports" @ref:146 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[10]/a
|
|
151
|
-
LINK "Sports Football" @ref:147 /nav[2]/ul/li[10]/ul/li[1]/a
|
|
152
|
-
LINK "Sports Tennis" @ref:148 /nav[2]/ul/li[10]/ul/li[2]/a
|
|
153
|
-
LINK "Sports Golf" @ref:149 /nav[2]/ul/li[10]/ul/li[3]/a
|
|
154
|
-
LINK "Sports Motorsport" @ref:150 /nav[2]/ul/li[10]/ul/li[4]/a
|
|
155
|
-
LINK "Sports US Sports" @ref:151 /nav[2]/ul/li[10]/ul/li[5]/a
|
|
156
|
-
LINK "Sports Olympics" @ref:152 /nav[2]/ul/li[10]/ul/li[6]/a
|
|
157
|
-
LINK "Sports Climbing" @ref:153 /nav[2]/ul/li[10]/ul/li[7]/a
|
|
158
|
-
LINK "Sports Esports" @ref:154 /nav[2]/ul/li[10]/ul/li[8]/a
|
|
159
|
-
LINK "Sports Hockey" @ref:155 /nav[2]/ul/li[10]/ul/li[9]/a
|
|
160
|
-
LINK "Science" @ref:156 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[11]/a
|
|
161
|
-
LINK "Science Space" @ref:157 /nav[2]/ul/li[11]/ul/li[1]/a
|
|
162
|
-
LINK "Science Life" @ref:158 /nav[2]/ul/li[11]/ul/li[2]/a
|
|
163
|
-
LINK "Science Unearthed" @ref:159 /nav[2]/ul/li[11]/ul/li[3]/a
|
|
164
|
-
LINK "Climate" @ref:160 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[12]/a
|
|
165
|
-
LINK "Climate Solutions" @ref:161 /nav[2]/ul/li[12]/ul/li[1]/a
|
|
166
|
-
LINK "Climate Weather" @ref:162 /nav[2]/ul/li[12]/ul/li[2]/a
|
|
167
|
-
LINK "Weather" @ref:163 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[13]/a
|
|
168
|
-
LINK "Weather Video" @ref:164 /nav[2]/ul/li[13]/ul/li[1]/a
|
|
169
|
-
LINK "Weather Climate" @ref:165 /nav[2]/ul/li[13]/ul/li[2]/a
|
|
170
|
-
LINK "Ukraine-Russia War" @ref:166 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[14]/a
|
|
171
|
-
LINK "Israel-Hamas War" @ref:167 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[15]/a
|
|
172
|
-
LINK "Features" @ref:168 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[16]/a
|
|
173
|
-
LINK "Features As Equals" @ref:169 /nav[2]/ul/li[16]/ul/li[1]/a
|
|
174
|
-
LINK "Features Call to Earth" @ref:170 /nav[2]/ul/li[16]/ul/li[2]/a
|
|
175
|
-
LINK "Features Freedom Project" @ref:171 /nav[2]/ul/li[16]/ul/li[3]/a
|
|
176
|
-
LINK "Features Impact Your World" @ref:172 /nav[2]/ul/li[16]/ul/li[4]/a
|
|
177
|
-
LINK "Features Inside Africa" @ref:173 /nav[2]/ul/li[16]/ul/li[5]/a
|
|
178
|
-
LINK "Features CNN Heroes" @ref:174 /nav[2]/ul/li[16]/ul/li[6]/a
|
|
179
|
-
LINK "Watch" @ref:175 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[17]/a
|
|
180
|
-
LINK "Watch Live TV" @ref:176 /nav[2]/ul/li[17]/ul/li[1]/a
|
|
181
|
-
LINK "Watch CNN Fast" @ref:177 /nav[2]/ul/li[17]/ul/li[2]/a
|
|
182
|
-
LINK "Watch Shows A-Z" @ref:178 /nav[2]/ul/li[17]/ul/li[3]/a
|
|
183
|
-
LINK "Watch CNN10" @ref:179 /nav[2]/ul/li[17]/ul/li[4]/a
|
|
184
|
-
LINK "Watch CNN Max" @ref:180 /nav[2]/ul/li[17]/ul/li[5]/a
|
|
185
|
-
LINK "Watch CNN TV Schedules" @ref:181 /nav[2]/ul/li[17]/ul/li[6]/a
|
|
186
|
-
LINK "Listen" @ref:182 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[18]/a
|
|
187
|
-
LINK "Listen CNN 5 Things" @ref:183 /nav[2]/ul/li[18]/ul/li[1]/a
|
|
188
|
-
LINK "Listen Chasing Life with Dr. Sanjay Gupta" @ref:184 /nav[2]/ul/li[18]/ul/li[2]/a
|
|
189
|
-
LINK "Listen The Assignment with Audie Cornish" @ref:185 /nav[2]/ul/li[18]/ul/li[3]/a
|
|
190
|
-
LINK "Listen One Thing" @ref:186 /nav[2]/ul/li[18]/ul/li[4]/a
|
|
191
|
-
LINK "Listen Tug of War" @ref:187 /nav[2]/ul/li[18]/ul/li[5]/a
|
|
192
|
-
LINK "Listen CNN Political Briefing" @ref:188 /nav[2]/ul/li[18]/ul/li[6]/a
|
|
193
|
-
LINK "Listen The Axe Files" @ref:189 /nav[2]/ul/li[18]/ul/li[7]/a
|
|
194
|
-
LINK "Listen All There Is with Anderson Cooper" @ref:190 /nav[2]/ul/li[18]/ul/li[8]/a
|
|
195
|
-
LINK "Listen All CNN Audio podcasts" @ref:191 /nav[2]/ul/li[18]/ul/li[9]/a
|
|
196
|
-
LINK "Games" @ref:192 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[19]/a
|
|
197
|
-
LINK "Games Daily Crossword" @ref:193 /nav[2]/ul/li[19]/ul/li[1]/a
|
|
198
|
-
LINK "Games Jumble Crossword" @ref:194 /nav[2]/ul/li[19]/ul/li[2]/a
|
|
199
|
-
LINK "Games Photo Shuffle" @ref:195 /nav[2]/ul/li[19]/ul/li[3]/a
|
|
200
|
-
LINK "Games Sudoblock" @ref:196 /nav[2]/ul/li[19]/ul/li[4]/a
|
|
201
|
-
LINK "Games Sudoku" @ref:197 /nav[2]/ul/li[19]/ul/li[5]/a
|
|
202
|
-
LINK "Games 5 Things Quiz" @ref:198 /nav[2]/ul/li[19]/ul/li[6]/a
|
|
203
|
-
LINK "About CNN" @ref:199 /div#headerSubNav[2]/div.header__container/nav[2]/ul/li[20]/a
|
|
204
|
-
LINK "About CNN Photos" @ref:200 /nav[2]/ul/li[20]/ul/li[1]/a
|
|
205
|
-
LINK "About CNN Investigations" @ref:201 /nav[2]/ul/li[20]/ul/li[2]/a
|
|
206
|
-
LINK "About CNN CNN Profiles" @ref:202 /nav[2]/ul/li[20]/ul/li[3]/a
|
|
207
|
-
LINK "About CNN CNN Leadership" @ref:203 /nav[2]/ul/li[20]/ul/li[4]/a
|
|
208
|
-
LINK "About CNN CNN Newsletters" @ref:204 /nav[2]/ul/li[20]/ul/li[5]/a
|
|
209
|
-
LINK "About CNN Work for CNN" @ref:205 /nav[2]/ul/li[20]/ul/li[6]/a
|
|
210
|
-
LINK "Visit us on Facebook" @ref:206 /div#headerSubNav[2]/div.header__container/div.header__social-links[3]/ul/li[1]/a
|
|
211
|
-
LINK "Visit us on X" @ref:207 /div#headerSubNav[2]/div.header__container/div.header__social-links[3]/ul/li[2]/a
|
|
212
|
-
LINK "Visit us on Instagram" @ref:208 /div#headerSubNav[2]/div.header__container/div.header__social-links[3]/ul/li[3]/a
|
|
213
|
-
LINK "Visit us on TikTok" @ref:209 /div#headerSubNav[2]/div.header__container/div.header__social-links[3]/ul/li[4]/a
|
|
214
|
-
LINK "Visit us on LinkedIn" @ref:210 /div#headerSubNav[2]/div.header__container/div.header__social-links[3]/ul/li[5]/a
|
|
215
|
-
LINK "CIA director in Venezuela" @ref:211 /section/section.tabcontent/div.container/ul/li.card[1]/a
|
|
216
|
-
LINK "Viktor Orbán" @ref:212 /section/section.tabcontent/div.container/ul/li.card[2]/a
|
|
217
|
-
LINK "Lull in nuclear tests" @ref:213 /section/section.tabcontent/div.container/ul/li.card[3]/a
|
|
218
|
-
LINK "Video Trump’s eating habits 3:13" @ref:214 /section/section.tabcontent/div.container/ul/li.card[4]/a
|
|
219
|
-
LINK "Basketball and gambling" @ref:215 /section/section.tabcontent/div.container/ul/li.card[5]/a
|
|
220
|
-
LINK "Tourism in Bangladesh" @ref:216 /section/section.tabcontent/div.container/ul/li.card[6]/a
|
|
221
|
-
LINK "How to find your style" @ref:217 /section/section.tabcontent/div.container/ul/li.card[7]/a
|
|
222
|
-
LINK "new pope conclave day two 05 08 25" @ref:218 /section[3]/section/section.tabcontent/a
|
|
223
|
-
LINK "function imageLoadError(img) { const fallbackIm..." @ref:219 /section/section.tabcontent/div.container[1]/ul/li.card[1]/a[1]
|
|
224
|
-
LINK "911 transcripts and incident report reveal wher..." @ref:220 /section/section.tabcontent/div.container[1]/ul/li.card[1]/a[2]
|
|
225
|
-
LINK "Catch up Trump threatens to invoke a rarely-use..." @ref:221 /section/section.tabcontent/div.container[1]/ul/li.card[2]/a
|
|
226
|
-
LINK "Analysis Minneapolis is becoming a critical tes..." @ref:222 /section/section.tabcontent/div.container[1]/ul/li.card[3]/a
|
|
227
|
-
LINK "The White House" @ref:223 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[1]
|
|
228
|
-
LINK "Venezuela’s Machado gave Trump her Nobel prize...." @ref:224 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[2]
|
|
229
|
-
LINK "CIA director traveled to Venezuela to meet with..." @ref:225 /section/section.tabcontent/div.container[2]/ul/li.card[2]/a
|
|
230
|
-
LINK "Why the Trump administration is holding million..." @ref:226 /section/section.tabcontent/div.container[2]/ul/li.card[3]/a
|
|
231
|
-
LINK "Trump floats tariffs on countries opposed to US..." @ref:227 /section[3]/section/section.tabcontent/div.container[1]/a
|
|
232
|
-
LINK "• Live Updates Live Updates CNN" @ref:228 /section[3]/section/section.tabcontent/div.container[1]/div.card[1]/a[1]
|
|
233
|
-
LINK "• Live Updates Live Updates Live Updates The US..." @ref:229 /section[3]/section/section.tabcontent/div.container[1]/div.card[1]/a[2]
|
|
234
|
-
LINK "• CNN Poll CNN Poll CNN Poll Majority of Americ..." @ref:230 /section[3]/section/section.tabcontent/div.container[1]/div.card[2]/a
|
|
235
|
-
LINK "Judge deals blow to the Trump Justice Departmen..." @ref:231 /section[3]/section/section.tabcontent/div.container[1]/div.card[3]/a
|
|
236
|
-
LINK "• Video 2:01 MAHSA/AFP/Middle East Images/Getty..." @ref:232 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[1]
|
|
237
|
-
LINK "Video Angha: In US-Iran tensions, ‘next 48 to 7..." @ref:233 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[2]
|
|
238
|
-
LINK "• Video 1:32 CNN" @ref:234 /section/section.tabcontent/div.container[2]/ul/li.card[2]/a[1]
|
|
239
|
-
LINK "Video CNN political director breaks down the po..." @ref:235 /section/section.tabcontent/div.container[2]/ul/li.card[2]/a[2]
|
|
240
|
-
LINK "• Video 6:52 CNN" @ref:236 /section/section.tabcontent/div.container[2]/ul/li.card[3]/a[1]
|
|
241
|
-
LINK "Video ‘Sloppy’: Journalist went through ICE’s h..." @ref:237 /section/section.tabcontent/div.container[2]/ul/li.card[3]/a[2]
|
|
242
|
-
BUTTON "Exit Playback" @ref:238 /li.card/div.card--media-large/div/div/div#overlay-root/button
|
|
243
|
-
BUTTON "Cast, not connected" @ref:239 /li.card/div.card--media-large/div/div/div#overlay-root/button
|
|
244
|
-
BUTTON "Play" @ref:240 /li.card/div.card--media-large/div/div/div#overlay-root/button
|
|
245
|
-
SLIDER @ref:241 [type=range] (disabled) /li.card/div.card--media-large/div/div/div#overlay-root/input
|
|
246
|
-
BUTTON "Play" @ref:242 /li.card/div.card--media-large/div/div/div#overlay-root/button
|
|
247
|
-
BUTTON "Volume 0%" @ref:243 /li.card/div.card--media-large/div/div/div#overlay-root/button
|
|
248
|
-
BUTTON "Audio and Subtitle Settings" @ref:244 /li.card/div.card--media-large/div/div/div#overlay-root/button[1]
|
|
249
|
-
BUTTON "Full Screen" @ref:245 /li.card/div.card--media-large/div/div/div#overlay-root/button[2]
|
|
250
|
-
LINK "Learn More" @ref:246 /li.card/div.card--media-large/div/div/div#overlay-root/a
|
|
251
|
-
BUTTON "Close audio and subtitles menu" @ref:247 /div.card--media-large/div/div/div#overlay-root/div#menuContainer_2ed4c/button
|
|
252
|
-
RADIO "Off" @ref:248 /div/div#overlay-root/div#menuContainer_2ed4c/ul/li/button
|
|
253
|
-
RADIO "English" @ref:249 /div/div#overlay-root/div#menuContainer_2ed4c/ul/li/button
|
|
254
|
-
BUTTON "Caption Styling Settings" @ref:250 /div.card--media-large/div/div/div#overlay-root/div#menuContainer_2ed4c/button
|
|
255
|
-
LINK "CNN" @ref:251 /section.tabcontent/div.container[1]/ul/li.card/div.card--media-large/a
|
|
256
|
-
LINK "Video Catch up on today’s global news" @ref:252 /section/section.tabcontent/div.container[1]/ul/li.card/a
|
|
257
|
-
LINK "Md Zakir Hossain/iStock Editorial/Getty Images" @ref:253 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[1]
|
|
258
|
-
LINK "It’s home to the world’s longest natural sea be..." @ref:254 /section/section.tabcontent/div.container[2]/ul/li.card[1]/a[2]
|
|
259
|
-
LINK "• Video 18:17 Travel Nevada" @ref:255 /section/section.tabcontent/div.container[2]/ul/li.card[2]/a[1]
|
|
260
|
-
LINK "Video Is this man going to die live on Netflix?..." @ref:256 /section/section.tabcontent/div.container[2]/ul/li.card[2]/a[2]
|
|
261
|
-
LINK "Yosef Garfinkel" @ref:257 /section/section.tabcontent/div.container[2]/ul/li.card[3]/a[1]
|
|
262
|
-
LINK "These ancient designs may be the first evidence..." @ref:258 /section/section.tabcontent/div.container[2]/ul/li.card[3]/a[2]
|
|
263
|
-
LINK "Sunny Celeste/imageBROKER/Shutterstock" @ref:259 /section/section.tabcontent/div.container[2]/ul/li.card[4]/a[1]
|
|
264
|
-
LINK "Leonardo da Vinci’s DNA may be hiding in his ar..." @ref:260 /section/section.tabcontent/div.container[2]/ul/li.card[4]/a[2]
|
|
265
|
-
LINK "• Video 1:08 Youtube/@dhammacetiya" @ref:261 /section/section.tabcontent/div.container[2]/ul/li.card[5]/a[1]
|
|
266
|
-
LINK "Video Why Buddhist monks and their dog are walk..." @ref:262 /section/section.tabcontent/div.container[2]/ul/li.card[5]/a[2]
|
|
267
|
-
LINK "Marton Monus/picture-alliance/dpa/AP" @ref:263 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
268
|
-
LINK "Rightwingers of the world unite to endorse Orbá..." @ref:264 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
269
|
-
LINK "On the verge of strikes in Iran, the US held of..." @ref:265 /section/section.tabcontent/div.container/ul/li.card[2]/a
|
|
270
|
-
LINK "At least 7 killed in Uganda election violence" @ref:266 /section/section.tabcontent/div.container/ul/li.card[3]/a
|
|
271
|
-
LINK "Canada’s leader patches things up with China as..." @ref:267 /section/section.tabcontent/div.container/ul/li.card[4]/a
|
|
272
|
-
LINK "Video Hundreds evacuated after fire in Seoul 0:25" @ref:268 /section/section.tabcontent/div.container/ul/li.card[5]/a
|
|
273
|
-
LINK "Mother of Elon Musk’s son sues his xAI over AI-..." @ref:269 /section/section.tabcontent/div.container/ul/li.card[6]/a
|
|
274
|
-
LINK "Britta Pedersen/picture alliance/Getty Images" @ref:270 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
275
|
-
LINK "‘As far as I’m concerned, this regime has falle..." @ref:271 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
276
|
-
LINK "Dia Dipasupil/WireImage/Getty Images" @ref:272 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
277
|
-
LINK "Jennifer Lawrence says she lost out on Tarantin..." @ref:273 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
278
|
-
LINK "Richard Shotwell/Invision/AP" @ref:274 /section/section.tabcontent/div.container/ul/li.card[3]/a[1]
|
|
279
|
-
LINK "Pamela Anderson felt ‘yucky’ sitting close to ‘..." @ref:275 /section/section.tabcontent/div.container/ul/li.card[3]/a[2]
|
|
280
|
-
LINK "Richard Tsong-Taatarii/Star Tribune/AP" @ref:276 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
281
|
-
LINK "How the unrest of 2020 cast a long shadow on Mi..." @ref:277 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
282
|
-
LINK "Tyrone Siu/Reuters" @ref:278 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
283
|
-
LINK "The Minneapolis mayor told ICE to leave his cit..." @ref:279 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
284
|
-
LINK "Sarah Rudd" @ref:280 /section[3]/section/section.tabcontent/div.container/div.card/a[1]
|
|
285
|
-
LINK "A 4-year-old died of flu complications. Her mot..." @ref:281 /section[3]/section/section.tabcontent/div.container/div.card/a[2]
|
|
286
|
-
LINK "Touchstone/Kobal/Shutterstock" @ref:282 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
287
|
-
LINK "How to actually find your personal style in 2026" @ref:283 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
288
|
-
LINK "Roger Kisby/2026GG/Penske Media/Getty Images" @ref:284 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
289
|
-
LINK "Why men are setting aside their sneakers in 2026" @ref:285 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
290
|
-
LINK "• Video 3:13 cnn" @ref:286 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
291
|
-
LINK "Video RFK Jr.: Trump has the most ‘unhinged’ ea..." @ref:287 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
292
|
-
LINK "• Analysis Analysis Francis Chung/Politico/Bloo..." @ref:288 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
293
|
-
LINK "Analysis Dolls, pencils, backyard chickens and ..." @ref:289 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
294
|
-
LINK "Mark Schiefelbein/AP/File" @ref:290 /section/section.tabcontent/div.container/ul/li.card[3]/a[1]
|
|
295
|
-
LINK "Pentagon moves to turn independent military out..." @ref:291 /section/section.tabcontent/div.container/ul/li.card[3]/a[2]
|
|
296
|
-
LINK "David Paul Morris/Bloomberg/Getty Images" @ref:292 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
297
|
-
LINK "Trump’s affordability pledge strikes directly a..." @ref:293 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
298
|
-
LINK "William Volcov/Brazil Photo Pres/Shutterstock" @ref:294 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
299
|
-
LINK "Americans are paying more than ever for cars. C..." @ref:295 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
300
|
-
LINK "skynesher/E+/Getty Images" @ref:296 /section/section.tabcontent/div.container/ul/li.card[3]/a[1]
|
|
301
|
-
LINK "When a credit report can hurt your chances of b..." @ref:297 /section/section.tabcontent/div.container/ul/li.card[3]/a[2]
|
|
302
|
-
LINK "Rick Egan/Pool/The Salt Lake Tribune" @ref:298 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
303
|
-
LINK "Alleged Charlie Kirk assassin Tyler Robinson’s ..." @ref:299 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
304
|
-
LINK "• Analysis Analysis Steven King/Icon Sportswire..." @ref:300 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
305
|
-
LINK "Analysis Money is flowing freely in college ath..." @ref:301 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
306
|
-
LINK "Edwin Tan/E+/Getty Images" @ref:302 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
307
|
-
LINK "Financial stress may be as bad for the heart as..." @ref:303 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
308
|
-
LINK "Lexi Critchett/Bloomberg/Getty Images" @ref:304 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
309
|
-
LINK "Trump and northeastern governors push for massi..." @ref:305 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
310
|
-
LINK "Roger Harris/Science Photo Library RF/Getty Images" @ref:306 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
311
|
-
LINK "Fossil analysis changes what paleontologists kn..." @ref:307 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
312
|
-
LINK "Wales News Service" @ref:308 /section/section.tabcontent/div.container/ul/li.card/a[1]
|
|
313
|
-
LINK "Two-star Michelin restaurant receives one-star ..." @ref:309 /section/section.tabcontent/div.container/ul/li.card/a[2]
|
|
314
|
-
LINK "• Video 1:12 Wrecktangle Pizza" @ref:310 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
315
|
-
LINK "Video Crowd confronts federal agents at MN pizz..." @ref:311 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
316
|
-
LINK "• Video 0:38 Obtained by CNN" @ref:312 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
317
|
-
LINK "Video Law enforcement use flash bang to enter h..." @ref:313 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
318
|
-
LINK "• Video 1:32 CNN" @ref:314 /section/section.tabcontent/div.container/ul/li.card[3]/a[1]
|
|
319
|
-
LINK "Video CNN Poll: Majority call Trump’s first yea..." @ref:315 /section/section.tabcontent/div.container/ul/li.card[3]/a[2]
|
|
320
|
-
LINK "• Video 0:41 Reuters" @ref:316 /section/section.tabcontent/div.container/ul/li.card[4]/a[1]
|
|
321
|
-
LINK "Video Machado gave Trump her Nobel prize medal ..." @ref:317 /section/section.tabcontent/div.container/ul/li.card[4]/a[2]
|
|
322
|
-
LINK "• Video 1:18 CNN" @ref:318 /section/section.tabcontent/div.container/ul/li.card[5]/a[1]
|
|
323
|
-
LINK "Video We went to the ‘Mom Dance Party’ 1:18" @ref:319 /section/section.tabcontent/div.container/ul/li.card[5]/a[2]
|
|
324
|
-
LINK "• Video 1:15 The White House" @ref:320 /section/section.tabcontent/div.container/ul/li.card[6]/a[1]
|
|
325
|
-
LINK "Video See Kimmel’s offer to Trump after Machado..." @ref:321 /section/section.tabcontent/div.container/ul/li.card[6]/a[2]
|
|
326
|
-
LINK "• Video 0:25 Reuters" @ref:322 /section/section.tabcontent/div.container/ul/li.card[7]/a[1]
|
|
327
|
-
LINK "Video Hundreds evacuated after fire in Seoul 0:25" @ref:323 /section/section.tabcontent/div.container/ul/li.card[7]/a[2]
|
|
328
|
-
LINK "• Video 1:07 Korean Central TV" @ref:324 /section/section.tabcontent/div.container/ul/li.card[8]/a[1]
|
|
329
|
-
LINK "Video North Korea takes a cue from Hollywood 1:07" @ref:325 /section/section.tabcontent/div.container/ul/li.card[8]/a[2]
|
|
330
|
-
LINK "• Video 0:18 New York State Police" @ref:326 /section/section.tabcontent/div.container/ul/li.card[9]/a[1]
|
|
331
|
-
LINK "Video Several hospitalized after multi-car cras..." @ref:327 /section/section.tabcontent/div.container/ul/li.card[9]/a[2]
|
|
332
|
-
LINK "• Video 1:22 CNN" @ref:328 /section/section.tabcontent/div.container/ul/li.card[10]/a[1]
|
|
333
|
-
LINK "Video CNN on scene as tear gas deployed in Minn..." @ref:329 /section/section.tabcontent/div.container/ul/li.card[10]/a[2]
|
|
334
|
-
LINK "• Video 0:50 Todd Pomerleau" @ref:330 /section/section.tabcontent/div.container/ul/li.card[11]/a[1]
|
|
335
|
-
LINK "Video Student who was mistakenly deported accep..." @ref:331 /section/section.tabcontent/div.container/ul/li.card[11]/a[2]
|
|
336
|
-
LINK "• Video 1:46 Reuters" @ref:332 /section/section.tabcontent/div.container/ul/li.card[12]/a[1]
|
|
337
|
-
LINK "Video Trump to use private military contractors..." @ref:333 /section/section.tabcontent/div.container/ul/li.card[12]/a[2]
|
|
338
|
-
LINK "• Video 1:08 Youtube/@dhammacetiya" @ref:334 /section/section.tabcontent/div.container/ul/li.card[13]/a[1]
|
|
339
|
-
LINK "Video Why Buddhist monks and their dog are walk..." @ref:335 /section/section.tabcontent/div.container/ul/li.card[13]/a[2]
|
|
340
|
-
LINK "• Video 0:35 Getty Images" @ref:336 /section/section.tabcontent/div.container/ul/li.card[14]/a[1]
|
|
341
|
-
LINK "Video Palestinian activist Mahmoud Khalil faces..." @ref:337 /section/section.tabcontent/div.container/ul/li.card[14]/a[2]
|
|
342
|
-
LINK "• Video 1:03 Reuters" @ref:338 /section/section.tabcontent/div.container/ul/li.card[15]/a[1]
|
|
343
|
-
LINK "Video More European troops head to Greenland as..." @ref:339 /section/section.tabcontent/div.container/ul/li.card[15]/a[2]
|
|
344
|
-
LINK "• Video 1:18 Metropolitan Detention Center Bern..." @ref:340 /section/section.tabcontent/div.container/ul/li.card[16]/a[1]
|
|
345
|
-
LINK "Video Director Timothy Busfield appears in cour..." @ref:341 /section/section.tabcontent/div.container/ul/li.card[16]/a[2]
|
|
346
|
-
LINK "• Video 2:04 CNN" @ref:342 /section/section.tabcontent/div.container/ul/li.card[17]/a[1]
|
|
347
|
-
LINK "Video Buildings collapse over tents in Gaza ami..." @ref:343 /section/section.tabcontent/div.container/ul/li.card[17]/a[2]
|
|
348
|
-
LINK "• Video 3:05 CNN" @ref:344 /section/section.tabcontent/div.container/ul/li.card[18]/a[1]
|
|
349
|
-
LINK "Video Trump threatens to invoke insurrection ac..." @ref:345 /section/section.tabcontent/div.container/ul/li.card[18]/a[2]
|
|
350
|
-
LINK "• Video 1:48 Bryce Urbany/CNN" @ref:346 /section/section.tabcontent/div.container/ul/li.card[19]/a[1]
|
|
351
|
-
LINK "Video Can you buy a longer, healthier life? 1:48" @ref:347 /section/section.tabcontent/div.container/ul/li.card[19]/a[2]
|
|
352
|
-
LINK "• Video 1:08 Andriy Sadovyi, Mayor of Lviv" @ref:348 /section/section.tabcontent/div.container/ul/li.card[20]/a[1]
|
|
353
|
-
LINK "Video Woman in Ukraine carries on working after..." @ref:349 /section/section.tabcontent/div.container/ul/li.card[20]/a[2]
|
|
354
|
-
LINK "• Video 1:09 CNN File" @ref:350 /section/section.tabcontent/div.container/ul/li.card[21]/a[1]
|
|
355
|
-
LINK "Video Why Japan’s Prime Minister may skip sumo ..." @ref:351 /section/section.tabcontent/div.container/ul/li.card[21]/a[2]
|
|
356
|
-
LINK "• Video 1:29 CNN" @ref:352 /section/section.tabcontent/div.container/ul/li.card[22]/a[1]
|
|
357
|
-
LINK "Video People line up for fast-growing Atlanta c..." @ref:353 /section/section.tabcontent/div.container/ul/li.card[22]/a[2]
|
|
358
|
-
LINK "• Video 0:28 Reuters" @ref:354 /section/section.tabcontent/div.container/ul/li.card[23]/a[1]
|
|
359
|
-
LINK "Video Cars swept out to sea in Australian flood..." @ref:355 /section/section.tabcontent/div.container/ul/li.card[23]/a[2]
|
|
360
|
-
LINK "• Video 0:29 CNN" @ref:356 /section/section.tabcontent/div.container/ul/li.card[24]/a[1]
|
|
361
|
-
LINK "Video Minneapolis mayor says city tensions are ..." @ref:357 /section/section.tabcontent/div.container/ul/li.card[24]/a[2]
|
|
362
|
-
LINK "• Video 0:58 NASA Via YouTube" @ref:358 /section/section.tabcontent/div.container/ul/li.card[25]/a[1]
|
|
363
|
-
LINK "Video NASA SpaceX Crew-11 returns to earth 0:58" @ref:359 /section/section.tabcontent/div.container/ul/li.card[25]/a[2]
|
|
364
|
-
LINK "Call to Earth Show all" @ref:360 /section[3]/section/section.tabcontent/div.container/a
|
|
365
|
-
LINK "Getty Images" @ref:361 /section/section.tabcontent/div.container/ul/li.card[1]/a[1]
|
|
366
|
-
LINK "He brought over 600 water bodies back to life. ..." @ref:362 /section/section.tabcontent/div.container/ul/li.card[1]/a[2]
|
|
367
|
-
LINK "Deshakalyan Chowdhury/AFP/Getty Images" @ref:363 /section/section.tabcontent/div.container/ul/li.card[2]/a[1]
|
|
368
|
-
LINK "Labeled ‘husband eaters’ after tiger attacks, t..." @ref:364 /section/section.tabcontent/div.container/ul/li.card[2]/a[2]
|
|
369
|
-
LINK "Northcrest Developments" @ref:365 /section/section.tabcontent/div.container/ul/li.card[3]/a[1]
|
|
370
|
-
LINK "Inside the abandoned airport being transformed ..." @ref:366 /section/section.tabcontent/div.container/ul/li.card[3]/a[2]
|
|
371
|
-
LINK "One Ocean Foundation" @ref:367 /section/section.tabcontent/div.container/ul/li.card[4]/a[1]
|
|
372
|
-
LINK "First mission to bottom of deep-sea canyon reve..." @ref:368 /section/section.tabcontent/div.container/ul/li.card[4]/a[2]
|
|
373
|
-
LINK "Gareth Cattermole/Getty Images" @ref:369 /section[3]/section/section.tabcontent/div.container/div.card/a[1]
|
|
374
|
-
LINK "Lee Byung-hun didn’t plan for global domination..." @ref:370 /section[3]/section/section.tabcontent/div.container/div.card/a[2]
|
|
375
|
-
LINK "Worried Greenlanders fear for future as Trump t..." @ref:371 /section/section.tabcontent/div.container/ul/li.card[1]/a
|
|
376
|
-
LINK "Japan and the Philippines sign a new defense pa..." @ref:372 /section/section.tabcontent/div.container/ul/li.card[2]/a
|
|
377
|
-
LINK "4 questions that will be answered in the NFL pl..." @ref:373 /section/section.tabcontent/div.container/ul/li.card[3]/a
|
|
378
|
-
LINK "Prehistoric wolf’s gut frozen in time reveals a..." @ref:374 /section/section.tabcontent/div.container/ul/li.card[4]/a
|
|
379
|
-
LINK "How killing time at a laundromat set Lily Zhang..." @ref:375 /section/section.tabcontent/div.container/ul/li.card[5]/a
|
|
380
|
-
LINK "Ariana Grande will reunite with ‘Wicked’ costar..." @ref:376 /section/section.tabcontent/div.container/ul/li.card[6]/a
|
|
381
|
-
LINK "Horses really can smell our fear, new study finds" @ref:377 /section/section.tabcontent/div.container/ul/li.card[7]/a
|
|
382
|
-
TEXTBOX "Search" @ref:378 /footer#pageFooter/div.footer__inner/div.search-bar[1]/form.search-bar__form/input.search-bar__input
|
|
383
|
-
BUTTON "Submit" @ref:379 /footer#pageFooter/div.footer__inner/div.search-bar[1]/form.search-bar__form/button.search-bar__submit
|
|
384
|
-
LINK "Subscribe Button" @ref:380 /footer#pageFooter/div.footer__inner/button#footerSubscribeButtonMobile
|
|
385
|
-
BUTTON "User Account Nav Button" @ref:381 /footer#pageFooter/div.footer__inner/div#mobile-footer-account-nav[2]/nav/button[1]
|
|
386
|
-
LINK "User Account Log In Button" @ref:382 /footer#pageFooter/div.footer__inner/div#mobile-footer-account-nav[2]/nav/button[2]
|
|
387
|
-
LINK "User Account Log In Button" @ref:383 /footer#pageFooter/div.footer__inner/div#mobile-footer-account-nav[2]/nav/button[3]
|
|
388
|
-
LINK "Settings" @ref:384 /div.footer__inner/div#mobile-footer-account-nav[2]/nav/ul/li[1]/a
|
|
389
|
-
LINK "Newsletters" @ref:385 /div.footer__inner/div#mobile-footer-account-nav[2]/nav/ul/li[2]/a
|
|
390
|
-
LINK "Topics you follow" @ref:386 /div.footer__inner/div#mobile-footer-account-nav[2]/nav/ul/li[3]/a
|
|
391
|
-
LINK "Sign out" @ref:387 /div.footer__inner/div#mobile-footer-account-nav[2]/nav/ul/li[4]/a
|
|
392
|
-
LINK "log in" @ref:388 /footer#pageFooter/div.footer__inner/div#mobile-footer-account-nav[2]/nav/a
|
|
393
|
-
LINK "Live TV" @ref:389 /footer#pageFooter/div.footer__inner/a.footer__live-tv-link[1]
|
|
394
|
-
LINK "Audio" @ref:390 /footer#pageFooter/div.footer__inner/a.footer__audio-link[2]
|
|
395
|
-
LINK "Video" @ref:391 /footer#pageFooter/div.footer__inner/a.footer__video-link[3]
|
|
396
|
-
LINK "World" @ref:392 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[1]/a
|
|
397
|
-
LINK "World Africa" @ref:393 /nav/ul/li[1]/ul/li[1]/a
|
|
398
|
-
LINK "World Americas" @ref:394 /nav/ul/li[1]/ul/li[2]/a
|
|
399
|
-
LINK "World Asia" @ref:395 /nav/ul/li[1]/ul/li[3]/a
|
|
400
|
-
LINK "World Australia" @ref:396 /nav/ul/li[1]/ul/li[4]/a
|
|
401
|
-
LINK "World China" @ref:397 /nav/ul/li[1]/ul/li[5]/a
|
|
402
|
-
LINK "World Europe" @ref:398 /nav/ul/li[1]/ul/li[6]/a
|
|
403
|
-
LINK "World India" @ref:399 /nav/ul/li[1]/ul/li[7]/a
|
|
404
|
-
LINK "World Middle East" @ref:400 /nav/ul/li[1]/ul/li[8]/a
|
|
405
|
-
LINK "World United Kingdom" @ref:401 /nav/ul/li[1]/ul/li[9]/a
|
|
406
|
-
LINK "US Politics" @ref:402 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[2]/a
|
|
407
|
-
LINK "US Politics Trump" @ref:403 /nav/ul/li[2]/ul/li[1]/a
|
|
408
|
-
LINK "US Politics Facts First" @ref:404 /nav/ul/li[2]/ul/li[2]/a
|
|
409
|
-
LINK "US Politics CNN Polls" @ref:405 /nav/ul/li[2]/ul/li[3]/a
|
|
410
|
-
LINK "US Politics 2025 Elections" @ref:406 /nav/ul/li[2]/ul/li[4]/a
|
|
411
|
-
LINK "US Politics Redistricting Tracker" @ref:407 /nav/ul/li[2]/ul/li[5]/a
|
|
412
|
-
LINK "Business" @ref:408 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[3]/a
|
|
413
|
-
LINK "Business Tech" @ref:409 /nav/ul/li[3]/ul/li[1]/a
|
|
414
|
-
LINK "Business Media" @ref:410 /nav/ul/li[3]/ul/li[2]/a
|
|
415
|
-
LINK "Business Calculators" @ref:411 /nav/ul/li[3]/ul/li[3]/a
|
|
416
|
-
LINK "Business Videos" @ref:412 /nav/ul/li[3]/ul/li[4]/a
|
|
417
|
-
LINK "Markets" @ref:413 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[4]/a
|
|
418
|
-
LINK "Markets Pre-markets" @ref:414 /nav/ul/li[4]/ul/li[1]/a
|
|
419
|
-
LINK "Markets After-Hours" @ref:415 /nav/ul/li[4]/ul/li[2]/a
|
|
420
|
-
LINK "Markets Fear & Greed" @ref:416 /nav/ul/li[4]/ul/li[3]/a
|
|
421
|
-
LINK "Markets Investing" @ref:417 /nav/ul/li[4]/ul/li[4]/a
|
|
422
|
-
LINK "Markets Markets Now" @ref:418 /nav/ul/li[4]/ul/li[5]/a
|
|
423
|
-
LINK "Markets Nightcap" @ref:419 /nav/ul/li[4]/ul/li[6]/a
|
|
424
|
-
LINK "Health" @ref:420 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[5]/a
|
|
425
|
-
LINK "Health Life, But Better" @ref:421 /nav/ul/li[5]/ul/li[1]/a
|
|
426
|
-
LINK "Health Fitness" @ref:422 /nav/ul/li[5]/ul/li[2]/a
|
|
427
|
-
LINK "Health Food" @ref:423 /nav/ul/li[5]/ul/li[3]/a
|
|
428
|
-
LINK "Health Sleep" @ref:424 /nav/ul/li[5]/ul/li[4]/a
|
|
429
|
-
LINK "Health Mindfulness" @ref:425 /nav/ul/li[5]/ul/li[5]/a
|
|
430
|
-
LINK "Health Relationships" @ref:426 /nav/ul/li[5]/ul/li[6]/a
|
|
431
|
-
LINK "Entertainment" @ref:427 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[6]/a
|
|
432
|
-
LINK "Entertainment Movies" @ref:428 /nav/ul/li[6]/ul/li[1]/a
|
|
433
|
-
LINK "Entertainment Television" @ref:429 /nav/ul/li[6]/ul/li[2]/a
|
|
434
|
-
LINK "Entertainment Celebrity" @ref:430 /nav/ul/li[6]/ul/li[3]/a
|
|
435
|
-
LINK "Tech" @ref:431 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[7]/a
|
|
436
|
-
LINK "Tech Innovate" @ref:432 /nav/ul/li[7]/ul/li[1]/a
|
|
437
|
-
LINK "Tech Foreseeable Future" @ref:433 /nav/ul/li[7]/ul/li[2]/a
|
|
438
|
-
LINK "Tech Mission: Ahead" @ref:434 /nav/ul/li[7]/ul/li[3]/a
|
|
439
|
-
LINK "Tech Work Transformed" @ref:435 /nav/ul/li[7]/ul/li[4]/a
|
|
440
|
-
LINK "Tech Innovative Cities" @ref:436 /nav/ul/li[7]/ul/li[5]/a
|
|
441
|
-
LINK "Style" @ref:437 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[8]/a
|
|
442
|
-
LINK "Style Arts" @ref:438 /nav/ul/li[8]/ul/li[1]/a
|
|
443
|
-
LINK "Style Design" @ref:439 /nav/ul/li[8]/ul/li[2]/a
|
|
444
|
-
LINK "Style Fashion" @ref:440 /nav/ul/li[8]/ul/li[3]/a
|
|
445
|
-
LINK "Style Architecture" @ref:441 /nav/ul/li[8]/ul/li[4]/a
|
|
446
|
-
LINK "Style Luxury" @ref:442 /nav/ul/li[8]/ul/li[5]/a
|
|
447
|
-
LINK "Style Beauty" @ref:443 /nav/ul/li[8]/ul/li[6]/a
|
|
448
|
-
LINK "Style Video" @ref:444 /nav/ul/li[8]/ul/li[7]/a
|
|
449
|
-
LINK "Travel" @ref:445 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[9]/a
|
|
450
|
-
LINK "Travel Destinations" @ref:446 /nav/ul/li[9]/ul/li[1]/a
|
|
451
|
-
LINK "Travel Food & Drink" @ref:447 /nav/ul/li[9]/ul/li[2]/a
|
|
452
|
-
LINK "Travel Stay" @ref:448 /nav/ul/li[9]/ul/li[3]/a
|
|
453
|
-
LINK "Travel News" @ref:449 /nav/ul/li[9]/ul/li[4]/a
|
|
454
|
-
LINK "Travel Videos" @ref:450 /nav/ul/li[9]/ul/li[5]/a
|
|
455
|
-
LINK "Sports" @ref:451 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[10]/a
|
|
456
|
-
LINK "Sports Football" @ref:452 /nav/ul/li[10]/ul/li[1]/a
|
|
457
|
-
LINK "Sports Tennis" @ref:453 /nav/ul/li[10]/ul/li[2]/a
|
|
458
|
-
LINK "Sports Golf" @ref:454 /nav/ul/li[10]/ul/li[3]/a
|
|
459
|
-
LINK "Sports Motorsport" @ref:455 /nav/ul/li[10]/ul/li[4]/a
|
|
460
|
-
LINK "Sports US Sports" @ref:456 /nav/ul/li[10]/ul/li[5]/a
|
|
461
|
-
LINK "Sports Olympics" @ref:457 /nav/ul/li[10]/ul/li[6]/a
|
|
462
|
-
LINK "Sports Climbing" @ref:458 /nav/ul/li[10]/ul/li[7]/a
|
|
463
|
-
LINK "Sports Esports" @ref:459 /nav/ul/li[10]/ul/li[8]/a
|
|
464
|
-
LINK "Sports Hockey" @ref:460 /nav/ul/li[10]/ul/li[9]/a
|
|
465
|
-
LINK "Science" @ref:461 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[11]/a
|
|
466
|
-
LINK "Science Space" @ref:462 /nav/ul/li[11]/ul/li[1]/a
|
|
467
|
-
LINK "Science Life" @ref:463 /nav/ul/li[11]/ul/li[2]/a
|
|
468
|
-
LINK "Science Unearthed" @ref:464 /nav/ul/li[11]/ul/li[3]/a
|
|
469
|
-
LINK "Climate" @ref:465 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[12]/a
|
|
470
|
-
LINK "Climate Solutions" @ref:466 /nav/ul/li[12]/ul/li[1]/a
|
|
471
|
-
LINK "Climate Weather" @ref:467 /nav/ul/li[12]/ul/li[2]/a
|
|
472
|
-
LINK "Weather" @ref:468 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[13]/a
|
|
473
|
-
LINK "Weather Video" @ref:469 /nav/ul/li[13]/ul/li[1]/a
|
|
474
|
-
LINK "Weather Climate" @ref:470 /nav/ul/li[13]/ul/li[2]/a
|
|
475
|
-
LINK "Ukraine-Russia War" @ref:471 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[14]/a
|
|
476
|
-
LINK "Israel-Hamas War" @ref:472 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[15]/a
|
|
477
|
-
LINK "Features" @ref:473 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[16]/a
|
|
478
|
-
LINK "Features As Equals" @ref:474 /nav/ul/li[16]/ul/li[1]/a
|
|
479
|
-
LINK "Features Call to Earth" @ref:475 /nav/ul/li[16]/ul/li[2]/a
|
|
480
|
-
LINK "Features Freedom Project" @ref:476 /nav/ul/li[16]/ul/li[3]/a
|
|
481
|
-
LINK "Features Impact Your World" @ref:477 /nav/ul/li[16]/ul/li[4]/a
|
|
482
|
-
LINK "Features Inside Africa" @ref:478 /nav/ul/li[16]/ul/li[5]/a
|
|
483
|
-
LINK "Features CNN Heroes" @ref:479 /nav/ul/li[16]/ul/li[6]/a
|
|
484
|
-
LINK "Watch" @ref:480 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[17]/a
|
|
485
|
-
LINK "Watch Featured" @ref:481 /nav/ul/li[17]/ul/li[1]/a
|
|
486
|
-
LINK "Watch Shows & Films" @ref:482 /nav/ul/li[17]/ul/li[2]/a
|
|
487
|
-
LINK "Watch Network TV" @ref:483 /nav/ul/li[17]/ul/li[3]/a
|
|
488
|
-
LINK "Watch Clips" @ref:484 /nav/ul/li[17]/ul/li[4]/a
|
|
489
|
-
LINK "Watch CNN Headlines" @ref:485 /nav/ul/li[17]/ul/li[5]/a
|
|
490
|
-
LINK "Watch CNN Shorts" @ref:486 /nav/ul/li[17]/ul/li[6]/a
|
|
491
|
-
LINK "Watch TV Shows A-Z" @ref:487 /nav/ul/li[17]/ul/li[7]/a
|
|
492
|
-
LINK "Watch CNN 10" @ref:488 /nav/ul/li[17]/ul/li[8]/a
|
|
493
|
-
LINK "Watch CNN Max" @ref:489 /nav/ul/li[17]/ul/li[9]/a
|
|
494
|
-
LINK "Watch TV Schedule" @ref:490 /nav/ul/li[17]/ul/li[10]/a
|
|
495
|
-
LINK "Listen" @ref:491 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[18]/a
|
|
496
|
-
LINK "Listen CNN 5 Things" @ref:492 /nav/ul/li[18]/ul/li[1]/a
|
|
497
|
-
LINK "Listen Chasing Life with Dr. Sanjay Gupta" @ref:493 /nav/ul/li[18]/ul/li[2]/a
|
|
498
|
-
LINK "Listen The Assignment with Audie Cornish" @ref:494 /nav/ul/li[18]/ul/li[3]/a
|
|
499
|
-
LINK "Listen One Thing" @ref:495 /nav/ul/li[18]/ul/li[4]/a
|
|
500
|
-
LINK "Listen Tug of War" @ref:496 /nav/ul/li[18]/ul/li[5]/a
|
|
501
|
-
LINK "Listen CNN Political Briefing" @ref:497 /nav/ul/li[18]/ul/li[6]/a
|
|
502
|
-
LINK "Listen The Axe Files" @ref:498 /nav/ul/li[18]/ul/li[7]/a
|
|
503
|
-
LINK "Listen All There Is with Anderson Cooper" @ref:499 /nav/ul/li[18]/ul/li[8]/a
|
|
504
|
-
LINK "Listen All CNN Audio podcasts" @ref:500 /nav/ul/li[18]/ul/li[9]/a
|
|
505
|
-
LINK "Games" @ref:501 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[19]/a
|
|
506
|
-
LINK "Games Daily Crossword" @ref:502 /nav/ul/li[19]/ul/li[1]/a
|
|
507
|
-
LINK "Games Jumble Crossword" @ref:503 /nav/ul/li[19]/ul/li[2]/a
|
|
508
|
-
LINK "Games Photo Shuffle" @ref:504 /nav/ul/li[19]/ul/li[3]/a
|
|
509
|
-
LINK "Games Sudoblock" @ref:505 /nav/ul/li[19]/ul/li[4]/a
|
|
510
|
-
LINK "Games Sudoku" @ref:506 /nav/ul/li[19]/ul/li[5]/a
|
|
511
|
-
LINK "Games 5 Things Quiz" @ref:507 /nav/ul/li[19]/ul/li[6]/a
|
|
512
|
-
LINK "About CNN" @ref:508 /div.footer__inner/div.footer__subnav[3]/nav/ul/li[20]/a
|
|
513
|
-
LINK "About CNN Photos" @ref:509 /nav/ul/li[20]/ul/li[1]/a
|
|
514
|
-
LINK "About CNN Investigations" @ref:510 /nav/ul/li[20]/ul/li[2]/a
|
|
515
|
-
LINK "About CNN CNN Profiles" @ref:511 /nav/ul/li[20]/ul/li[3]/a
|
|
516
|
-
LINK "About CNN CNN Leadership" @ref:512 /nav/ul/li[20]/ul/li[4]/a
|
|
517
|
-
LINK "About CNN CNN Newsletters" @ref:513 /nav/ul/li[20]/ul/li[5]/a
|
|
518
|
-
LINK "About CNN Work for CNN" @ref:514 /nav/ul/li[20]/ul/li[6]/a
|
|
519
|
-
LINK "CNN logo" @ref:515 /footer#pageFooter/div.footer__inner/div.footer__row[4]/div.footer__brand-logo[1]/a
|
|
520
|
-
LINK "Video" @ref:516 /footer#pageFooter/div.footer__inner/div.footer__row[4]/div.footer__right[2]/a.footer__video-link[1]
|
|
521
|
-
LINK "Audio" @ref:517 /footer#pageFooter/div.footer__inner/div.footer__row[4]/div.footer__right[2]/a.footer__audio-link[2]
|
|
522
|
-
LINK "Live TV" @ref:518 /footer#pageFooter/div.footer__inner/div.footer__row[4]/div.footer__right[2]/a.footer__live-tv-link[3]
|
|
523
|
-
LINK "Subscribe Button" @ref:519 /footer#pageFooter/div.footer__inner/div.footer__row[4]/div.footer__right[2]/button#footerSubscribeButtonDesktop
|
|
524
|
-
BUTTON "User Account Nav Button" @ref:520 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/button[1]
|
|
525
|
-
LINK "User Account Log In Button" @ref:521 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/button[2]
|
|
526
|
-
LINK "User Account Log In Button" @ref:522 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/button[3]
|
|
527
|
-
LINK "Settings" @ref:523 /div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/ul/li[1]/a
|
|
528
|
-
LINK "Newsletters" @ref:524 /div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/ul/li[2]/a
|
|
529
|
-
LINK "Topics you follow" @ref:525 /div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/ul/li[3]/a
|
|
530
|
-
LINK "Sign out" @ref:526 /div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/ul/li[4]/a
|
|
531
|
-
LINK "log in" @ref:527 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div#desktop-footer-account-nav[1]/nav/a
|
|
532
|
-
LINK "Visit us on Facebook" @ref:528 /div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/ul/li[1]/a
|
|
533
|
-
LINK "Visit us on X" @ref:529 /div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/ul/li[2]/a
|
|
534
|
-
LINK "Visit us on Instagram" @ref:530 /div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/ul/li[3]/a
|
|
535
|
-
LINK "Visit us on TikTok" @ref:531 /div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/ul/li[4]/a
|
|
536
|
-
LINK "Visit us on LinkedIn" @ref:532 /div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/ul/li[5]/a
|
|
537
|
-
LINK "Download on Apple App Store" @ref:533 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/div.footer__app-download[2]/a.footer__app-download-link[1]
|
|
538
|
-
LINK "Get it on Google Play" @ref:534 /div.footer__inner/div.footer__row[4]/div.footer__right[2]/div.footer__social-and-app[2]/div.footer__app-download[2]/a.footer__app-download-link[2]
|
|
539
|
-
LINK "Download on Apple App Store" @ref:535 /footer#pageFooter/div.footer__inner/div.footer__app-download/a.footer__app-download-link[1]
|
|
540
|
-
LINK "Get it on Google Play" @ref:536 /footer#pageFooter/div.footer__inner/div.footer__app-download/a.footer__app-download-link[2]
|
|
541
|
-
LINK "Terms of Use" @ref:537 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[1]
|
|
542
|
-
LINK "Privacy Policy" @ref:538 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[2]
|
|
543
|
-
LINK "Manage Cookies" @ref:539 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[3]
|
|
544
|
-
LINK "Ad Choices" @ref:540 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[4]
|
|
545
|
-
LINK "Accessibility & CC" @ref:541 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[5]
|
|
546
|
-
LINK "About" @ref:542 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[6]
|
|
547
|
-
LINK "Newsletters" @ref:543 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[7]
|
|
548
|
-
LINK "Transcripts" @ref:544 /footer#pageFooter/div.footer__inner/nav.footer__links/a.footer__link[8]
|
|
549
|
-
BUTTON "Close preference center" @ref:545 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/button#close-pc-btn-handler
|
|
550
|
-
LINK "https://www.cnn.com/privacy" @ref:546 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/div#ot-pc-content[2]/section/p#ot-desc-id-BG2362/a
|
|
551
|
-
BUTTON "Back" @ref:547 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/div#ot-lst-title[1]/button
|
|
552
|
-
TEXTBOX "Cookie list search" @ref:548 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/input#vendor-search-handler
|
|
553
|
-
BUTTON "Filter Cookie List" @ref:549 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/button#filter-btn-handler
|
|
554
|
-
BUTTON "Clear" @ref:550 /div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#clear-filters-handler
|
|
555
|
-
CHECKBOX "checkbox label" @ref:551 [type=checkbox] /div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/ul/li/input#chkbox-id
|
|
556
|
-
BUTTON "Apply" @ref:552 /div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-apply-handler[1]
|
|
557
|
-
BUTTON "Cancel" @ref:553 /div#onetrust-pc-sdk[2]/section#ot-pc-lst/div#ot-pc-hdr/section#ot-fltr-modal/div#ot-fltr-cnt/button#filter-cancel-handler[2]
|
|
558
|
-
CHECKBOX "checkbox label" @ref:554 [type=checkbox] /div#onetrust-pc-sdk[2]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-hostcntr[1]/input
|
|
559
|
-
CHECKBOX "checkbox label" @ref:555 [type=checkbox] /div#onetrust-pc-sdk[2]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-vencntr[2]/input
|
|
560
|
-
CHECKBOX "checkbox label" @ref:556 [type=checkbox] /div#onetrust-pc-sdk[2]/section#ot-pc-lst/section#ot-lst-cnt/div#ot-sel-blk[1]/div#ot-selall-licntr[3]/input#select-all-vendor-leg-handler
|
|
561
|
-
BUTTON "Close" @ref:557 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/button
|
|
562
|
-
LINK "Powered by OneTrust Opens in a new Tab" @ref:558 /div#onetrust-consent-sdk[3]/div#onetrust-pc-sdk[2]/a
|