btcp-browser-agent 0.1.0

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 (117) hide show
  1. package/CLAUDE.md +230 -0
  2. package/LICENSE +21 -0
  3. package/README.md +309 -0
  4. package/SKILL.md +143 -0
  5. package/SNAPSHOT_IMPROVEMENTS.md +302 -0
  6. package/USAGE.md +146 -0
  7. package/dist/index.d.ts +34 -0
  8. package/dist/index.d.ts.map +1 -0
  9. package/dist/index.js +35 -0
  10. package/dist/index.js.map +1 -0
  11. package/docs/browser-cli-design.md +500 -0
  12. package/examples/chrome-extension/CHANGELOG.md +210 -0
  13. package/examples/chrome-extension/DEBUG.md +231 -0
  14. package/examples/chrome-extension/ERROR_FIXED.md +147 -0
  15. package/examples/chrome-extension/QUICK_TEST.md +189 -0
  16. package/examples/chrome-extension/README.md +149 -0
  17. package/examples/chrome-extension/SESSION_ONLY_MODE.md +305 -0
  18. package/examples/chrome-extension/TEST_WITH_YOUR_TABS.md +97 -0
  19. package/examples/chrome-extension/build.js +43 -0
  20. package/examples/chrome-extension/manifest.json +37 -0
  21. package/examples/chrome-extension/package-lock.json +1063 -0
  22. package/examples/chrome-extension/package.json +21 -0
  23. package/examples/chrome-extension/popup.html +195 -0
  24. package/examples/chrome-extension/src/background.ts +12 -0
  25. package/examples/chrome-extension/src/content.ts +7 -0
  26. package/examples/chrome-extension/src/popup.ts +303 -0
  27. package/examples/chrome-extension/src/scenario-google-github.ts +389 -0
  28. package/examples/chrome-extension/test-page.html +127 -0
  29. package/examples/chrome-extension/tests/README.md +206 -0
  30. package/examples/chrome-extension/tests/scenario-google-to-github-star.ts +380 -0
  31. package/examples/chrome-extension/tsconfig.json +14 -0
  32. package/examples/snapshots/README.md +207 -0
  33. package/examples/snapshots/amazon-com-detail.html +9528 -0
  34. package/examples/snapshots/amazon-com-detail.snapshot.txt +997 -0
  35. package/examples/snapshots/convert-snapshots.ts +97 -0
  36. package/examples/snapshots/edition-cnn-com.html +13292 -0
  37. package/examples/snapshots/edition-cnn-com.snapshot.txt +562 -0
  38. package/examples/snapshots/github-com-microsoft-vscode.html +2916 -0
  39. package/examples/snapshots/github-com-microsoft-vscode.snapshot.txt +455 -0
  40. package/examples/snapshots/google-search.html +20012 -0
  41. package/examples/snapshots/google-search.snapshot.txt +195 -0
  42. package/examples/snapshots/metadata.json +86 -0
  43. package/examples/snapshots/npr-org-templates.html +2031 -0
  44. package/examples/snapshots/npr-org-templates.snapshot.txt +224 -0
  45. package/examples/snapshots/stackoverflow-com.html +5216 -0
  46. package/examples/snapshots/stackoverflow-com.snapshot.txt +2404 -0
  47. package/examples/snapshots/test-all-mode.html +46 -0
  48. package/examples/snapshots/test-all-mode.snapshot.txt +5 -0
  49. package/examples/snapshots/validate.test.ts +296 -0
  50. package/package.json +65 -0
  51. package/packages/cli/package.json +42 -0
  52. package/packages/cli/src/__tests__/cli.test.ts +434 -0
  53. package/packages/cli/src/__tests__/errors.test.ts +226 -0
  54. package/packages/cli/src/__tests__/executor.test.ts +275 -0
  55. package/packages/cli/src/__tests__/formatter.test.ts +260 -0
  56. package/packages/cli/src/__tests__/parser.test.ts +288 -0
  57. package/packages/cli/src/__tests__/suggestions.test.ts +255 -0
  58. package/packages/cli/src/commands/back.ts +22 -0
  59. package/packages/cli/src/commands/check.ts +33 -0
  60. package/packages/cli/src/commands/clear.ts +33 -0
  61. package/packages/cli/src/commands/click.ts +32 -0
  62. package/packages/cli/src/commands/closetab.ts +31 -0
  63. package/packages/cli/src/commands/eval.ts +41 -0
  64. package/packages/cli/src/commands/fill.ts +30 -0
  65. package/packages/cli/src/commands/focus.ts +33 -0
  66. package/packages/cli/src/commands/forward.ts +22 -0
  67. package/packages/cli/src/commands/goto.ts +34 -0
  68. package/packages/cli/src/commands/help.ts +162 -0
  69. package/packages/cli/src/commands/hover.ts +34 -0
  70. package/packages/cli/src/commands/index.ts +129 -0
  71. package/packages/cli/src/commands/newtab.ts +35 -0
  72. package/packages/cli/src/commands/press.ts +40 -0
  73. package/packages/cli/src/commands/reload.ts +25 -0
  74. package/packages/cli/src/commands/screenshot.ts +27 -0
  75. package/packages/cli/src/commands/scroll.ts +64 -0
  76. package/packages/cli/src/commands/select.ts +35 -0
  77. package/packages/cli/src/commands/snapshot.ts +21 -0
  78. package/packages/cli/src/commands/tab.ts +32 -0
  79. package/packages/cli/src/commands/tabs.ts +26 -0
  80. package/packages/cli/src/commands/text.ts +27 -0
  81. package/packages/cli/src/commands/title.ts +17 -0
  82. package/packages/cli/src/commands/type.ts +38 -0
  83. package/packages/cli/src/commands/uncheck.ts +33 -0
  84. package/packages/cli/src/commands/url.ts +17 -0
  85. package/packages/cli/src/commands/wait.ts +54 -0
  86. package/packages/cli/src/errors.ts +164 -0
  87. package/packages/cli/src/executor.ts +68 -0
  88. package/packages/cli/src/formatter.ts +215 -0
  89. package/packages/cli/src/index.ts +257 -0
  90. package/packages/cli/src/parser.ts +195 -0
  91. package/packages/cli/src/suggestions.ts +207 -0
  92. package/packages/cli/src/terminal/Terminal.ts +365 -0
  93. package/packages/cli/src/terminal/index.ts +5 -0
  94. package/packages/cli/src/types.ts +155 -0
  95. package/packages/cli/tsconfig.json +20 -0
  96. package/packages/core/package.json +35 -0
  97. package/packages/core/src/actions.ts +1210 -0
  98. package/packages/core/src/errors.ts +296 -0
  99. package/packages/core/src/index.test.ts +638 -0
  100. package/packages/core/src/index.ts +220 -0
  101. package/packages/core/src/ref-map.ts +107 -0
  102. package/packages/core/src/snapshot.ts +873 -0
  103. package/packages/core/src/types.ts +536 -0
  104. package/packages/core/tsconfig.json +23 -0
  105. package/packages/extension/README.md +129 -0
  106. package/packages/extension/package.json +43 -0
  107. package/packages/extension/src/background.ts +888 -0
  108. package/packages/extension/src/content.ts +172 -0
  109. package/packages/extension/src/index.ts +579 -0
  110. package/packages/extension/src/session-manager.ts +385 -0
  111. package/packages/extension/src/session-types.ts +144 -0
  112. package/packages/extension/src/types.ts +162 -0
  113. package/packages/extension/tsconfig.json +28 -0
  114. package/src/index.ts +64 -0
  115. package/tsconfig.build.json +12 -0
  116. package/tsconfig.json +26 -0
  117. package/vitest.config.ts +13 -0
@@ -0,0 +1,997 @@
1
+ PAGE: http://localhost/ | Amazon.com: ASUS ROG Swift 32” 4K OLED Gaming Monitor (PG32UCDM) - UHD (3840 x 2160), QD-OLED, 240Hz, 0.03ms, G-SYNC Compatible, Custom Heatsink, Graphene Film, 99% DCI-P3, True 10-bit, 90W USB-C : Electronics | viewport=1024x768
2
+ SNAPSHOT: elements=7582 refs=994
3
+
4
+ LINK "main content" @ref:0 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[1]/a.nav-assistant-link
5
+ LINK "About this item" @ref:1 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[2]/a.nav-assistant-link
6
+ LINK "About this item" @ref:2 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[3]/a.nav-assistant-link
7
+ LINK "About this item" @ref:3 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[4]/a.nav-assistant-link
8
+ LINK "Buying options" @ref:4 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[5]/a.nav-assistant-link
9
+ LINK "Compare with similar items" @ref:5 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[6]/a#nav-assist-skip-to-compare
10
+ LINK "Videos" @ref:6 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[7]/a#nav-assist-skip-to-videos
11
+ LINK "Reviews" @ref:7 /div#a-page[1]/nav#shortcut-menu/ul[1]/li.nav-assistant-list-item[8]/a#nav-assist-skip-to-reviews
12
+ LINK "Search, option, forward slash" @ref:8 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[1]/a#nav-assist-search
13
+ LINK "Cart, shift, option, c" @ref:9 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[2]/a#nav-assist-cart
14
+ LINK "Home, shift, option, h" @ref:10 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[3]/a#nav-assist-home
15
+ LINK "Your orders, shift, option, o" @ref:11 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[4]/a#nav-assist-your-orders
16
+ BUTTON "Add to cart, shift, option, K" @ref:12 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[5]/button#nav-assist-add-to-cart
17
+ BUTTON "Show/hide shortcuts, shift, option, z" @ref:13 /div#a-page[1]/nav#shortcut-menu/ul[2]/li.nav-assistant-list-item[6]/button#nav-assist-show-shortcuts
18
+ LINK "Amazon" @ref:14 /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-logo[1]/a#nav-logo-sprites
19
+ BUTTON "Deliver to Vietnam" @ref:15 /div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-global-location-slot[2]/span.nav-progressive-attribute/a.nav-a
20
+ TEXTBOX @ref:16 [type=hidden] /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-global-location-slot[2]/input#unifiedLocation1ClickAddress[1]
21
+ TEXTBOX @ref:17 [type=hidden] /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-global-location-slot[2]/input#ubbShipTo[2]
22
+ TEXTBOX @ref:18 [type=hidden] /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-global-location-slot[2]/input#glowValidationToken[3]
23
+ TEXTBOX @ref:19 [type=hidden] /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-left[1]/div#nav-global-location-slot[2]/input#glowDestinationType[4]
24
+ COMBOBOX "Select the department you want to search in" @ref:20 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
25
+ OPTION "All Departments" @ref:21 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
26
+ OPTION "Arts & Crafts" @ref:22 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
27
+ OPTION "Automotive" @ref:23 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
28
+ OPTION "Baby" @ref:24 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
29
+ OPTION "Beauty & Personal Care" @ref:25 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
30
+ OPTION "Books" @ref:26 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
31
+ OPTION "Boys' Fashion" @ref:27 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
32
+ OPTION "Computers" @ref:28 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
33
+ OPTION "Deals" @ref:29 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
34
+ OPTION "Digital Music" @ref:30 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
35
+ OPTION "Electronics" @ref:31 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
36
+ OPTION "Girls' Fashion" @ref:32 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
37
+ OPTION "Health & Household" @ref:33 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
38
+ OPTION "Home & Kitchen" @ref:34 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
39
+ OPTION "Industrial & Scientific" @ref:35 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
40
+ OPTION "Kindle Store" @ref:36 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
41
+ OPTION "Luggage" @ref:37 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
42
+ OPTION "Men's Fashion" @ref:38 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
43
+ OPTION "Movies & TV" @ref:39 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
44
+ OPTION "Music, CDs & Vinyl" @ref:40 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
45
+ OPTION "Pet Supplies" @ref:41 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
46
+ OPTION "Prime Video" @ref:42 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
47
+ OPTION "Software" @ref:43 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
48
+ OPTION "Sports & Outdoors" @ref:44 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
49
+ OPTION "Tools & Home Improvement" @ref:45 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
50
+ OPTION "Toys & Games" @ref:46 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
51
+ OPTION "Video Games" @ref:47 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
52
+ OPTION "Women's Fashion" @ref:48 /div#nav-search/form#nav-search-bar-form/div.nav-left[1]/div#nav-search-dropdown-card/div.nav-search-scope/select#searchDropdownBox
53
+ SEARCHBOX "Search Amazon" @ref:49 /div#nav-fill-search[2]/div#nav-search/form#nav-search-bar-form/div.nav-fill[2]/div.nav-search-field[1]/input#twotabsearchtextbox
54
+ BUTTON "Go" @ref:50 [type=submit] /div#nav-search/form#nav-search-bar-form/div.nav-right[3]/div.nav-search-submit/span#nav-search-submit-text/input#nav-search-submit-button
55
+ BUTTON "Agent Search" @ref:51 [type=submit] /div#nav-fill-search[2]/div#nav-search/form#nav-search-bar-form/div.nav-right[3]/span#nav-search-submit-text-agent/input
56
+ LINK "Choose a language for shopping in Amazon United..." @ref:52 /div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/div#icp-nav-flyout[1]/a.nav-a
57
+ BUTTON "Expand to Change Language or Country" @ref:53 /div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/div#icp-nav-flyout[1]/button.nav-flyout-button
58
+ LINK "Hello, sign in Account & Lists" @ref:54 /div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/div#nav-link-accountList[2]/a.nav-a
59
+ BUTTON "Expand Account and Lists" @ref:55 /div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/div#nav-link-accountList[2]/button.nav-flyout-button
60
+ LINK "Returns & Orders" @ref:56 /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/a#nav-orders[1]
61
+ LINK "0 items in cart" @ref:57 /header#navbar-main/div#navbar/div#nav-belt[1]/div.nav-right[3]/div#nav-tools/a#nav-cart[2]
62
+ BUTTON "Dismiss" @ref:58 [type=submit] /header#navbar-main/div#navbar/div#nav-flyout-iss-anchor[2]/div.nav-coreFlyout[2]/span#a-autoid-29[1]/input
63
+ BUTTON "Change Address" @ref:59 [type=submit] /header#navbar-main/div#navbar/div#nav-flyout-iss-anchor[2]/div.nav-coreFlyout[2]/span#a-autoid-30[2]/input
64
+ LINK "Sign in" @ref:60 /div#nav-flyout-accountList[3]/div.nav-template[2]/div#nav-al-container/div#nav-al-signin[1]/div#nav-flyout-ya-signin/a.nav-action-signin-button
65
+ LINK "New to Amazon? Start here to create an account" @ref:61 /div.nav-template[2]/div#nav-al-container/div#nav-al-signin[1]/div#nav-flyout-ya-signin/div#nav-flyout-ya-newCust/a.nav-a
66
+ LINK "Create a List" @ref:62 /div.nav-template[2]/div#nav-al-container/div#nav-al-wishlist[2]/ul/li[1]/a.nav-link
67
+ LINK "Find a List or Registry" @ref:63 /div.nav-template[2]/div#nav-al-container/div#nav-al-wishlist[2]/ul/li[2]/a.nav-link
68
+ LINK "Account" @ref:64 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[1]/a.nav-link
69
+ LINK "Orders" @ref:65 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[2]/a#nav_prefetch_yourorders
70
+ LINK "Recommendations" @ref:66 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[3]/a.nav-link
71
+ LINK "Browsing History" @ref:67 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[4]/a.nav-link
72
+ LINK "Your Shopping preferences" @ref:68 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[5]/a.nav-link
73
+ LINK "Watchlist" @ref:69 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[6]/a.nav-link
74
+ LINK "Video Purchases & Rentals" @ref:70 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[7]/a.nav-link
75
+ LINK "Kindle Unlimited" @ref:71 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[8]/a.nav-link
76
+ LINK "Content & Devices" @ref:72 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[9]/a.nav-link
77
+ LINK "Subscribe & Save Items" @ref:73 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[10]/a.nav-link
78
+ LINK "Memberships & Subscriptions" @ref:74 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[11]/a.nav-link
79
+ LINK "Music Library" @ref:75 /div.nav-template[2]/div#nav-al-container/div#nav-al-your-account[3]/ul/li[12]/a.nav-link
80
+ BUTTON "Open All Categories Menu" @ref:76 /div#a-page[1]/header#navbar-main/div#navbar/div#nav-main[5]/div.nav-left[1]/a#nav-hamburger-menu
81
+ LINK "Today's Deals" @ref:77 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[1]/div.nav-div/a.nav-a
82
+ LINK "Prime Video" @ref:78 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[2]/div.nav-div/a.nav-a
83
+ LINK "Registry" @ref:79 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[3]/div.nav-div/a.nav-a
84
+ LINK "Gift Cards" @ref:80 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[4]/div.nav-div/a.nav-a
85
+ LINK "Customer Service" @ref:81 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[5]/div.nav-div/a.nav-a
86
+ LINK "Sell" @ref:82 /div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/li.nav-li[6]/div.nav-div/a.nav-a
87
+ LINK "Click to call our Disability Customer Support l..." @ref:83 /div#nav-main[5]/div.nav-fill[2]/div#nav-xshop-container[2]/div#nav-xshop/ul.nav-ul/a.nav-hidden-aria
88
+ LINK "Electronics" @ref:84 /div[4]/div/div/ul/li[1]/a
89
+ LINK "Computers & Accessories" @ref:85 /div[4]/div/div/ul/li[3]/a
90
+ LINK "Monitors" @ref:86 /div[4]/div/div/ul/li[5]/a
91
+ TEXTBOX @ref:87 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#rightCol[1]/div[1]/input
92
+ TEXTBOX @ref:88 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#desktop-atc-anti-csrf-token[1]
93
+ TEXTBOX @ref:89 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[2]
94
+ TEXTBOX @ref:90 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[3]
95
+ TEXTBOX @ref:91 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[4]
96
+ TEXTBOX @ref:92 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[5]
97
+ TEXTBOX @ref:93 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[6]
98
+ TEXTBOX @ref:94 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[7]
99
+ TEXTBOX @ref:95 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[8]
100
+ TEXTBOX @ref:96 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#offerListingID[9]
101
+ TEXTBOX @ref:97 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#session-id[10]
102
+ TEXTBOX @ref:98 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#ASIN[11]
103
+ TEXTBOX @ref:99 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#isMerchantExclusive[12]
104
+ TEXTBOX @ref:100 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#merchantID[13]
105
+ TEXTBOX @ref:101 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#isAddon[14]
106
+ TEXTBOX @ref:102 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#nodeID[15]
107
+ TEXTBOX @ref:103 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#sellingCustomerID[16]
108
+ TEXTBOX @ref:104 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#qid[17]
109
+ TEXTBOX @ref:105 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#sr[18]
110
+ TEXTBOX @ref:106 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#storeID[19]
111
+ TEXTBOX @ref:107 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#tagActionCode[20]
112
+ TEXTBOX @ref:108 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#viewID[21]
113
+ TEXTBOX @ref:109 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#rebateId[22]
114
+ TEXTBOX @ref:110 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#ctaDeviceType[23]
115
+ TEXTBOX @ref:111 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#ctaPageType[24]
116
+ TEXTBOX @ref:112 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#usePrimeHandler[25]
117
+ TEXTBOX @ref:113 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#smokeTestEnabled[26]
118
+ TEXTBOX @ref:114 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#rsid[27]
119
+ TEXTBOX @ref:115 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#sourceCustomerOrgListID[28]
120
+ TEXTBOX @ref:116 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input#sourceCustomerOrgListItemID[29]
121
+ TEXTBOX @ref:117 [type=hidden] /div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/form#addToCart/input[30]
122
+ BUTTON "Details" @ref:118 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[4]/div#amazonGlobal_feature_div[8]/a
123
+ LINK "Estimated Import Charges" @ref:119 /div#desktop_qualifiedBuyBox[4]/div[4]/div#amazonGlobal_feature_div[8]/div#a-popover-NEW_0/table/a
124
+ BUTTON "Deliver to Vietnam" @ref:120 /form#addToCart/div#desktop_qualifiedBuyBox[4]/div[4]/div#deliveryBlockContainer[10]/div[2]/a#contextualIngressPtLink
125
+ TEXTBOX @ref:121 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[8]/div#all-offers-display/input[1]
126
+ TEXTBOX @ref:122 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[8]/div#all-offers-display/input#all-offers-display-params[2]
127
+ TEXTBOX @ref:123 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/input
128
+ COMBOBOX "Quantity:" @ref:124 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
129
+ OPTION "1" @ref:125 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
130
+ OPTION "2" @ref:126 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
131
+ OPTION "3" @ref:127 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
132
+ OPTION "4" @ref:128 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
133
+ OPTION "5" @ref:129 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
134
+ OPTION "6" @ref:130 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
135
+ OPTION "7" @ref:131 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
136
+ OPTION "8" @ref:132 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
137
+ OPTION "9" @ref:133 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
138
+ OPTION "10" @ref:134 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
139
+ OPTION "11" @ref:135 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
140
+ OPTION "12" @ref:136 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
141
+ OPTION "13" @ref:137 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
142
+ OPTION "14" @ref:138 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
143
+ OPTION "15" @ref:139 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
144
+ OPTION "16" @ref:140 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
145
+ OPTION "17" @ref:141 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
146
+ OPTION "18" @ref:142 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
147
+ OPTION "19" @ref:143 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
148
+ OPTION "20" @ref:144 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
149
+ OPTION "21" @ref:145 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
150
+ OPTION "22" @ref:146 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
151
+ OPTION "23" @ref:147 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
152
+ OPTION "24" @ref:148 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
153
+ OPTION "25" @ref:149 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
154
+ OPTION "26" @ref:150 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
155
+ OPTION "27" @ref:151 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
156
+ OPTION "28" @ref:152 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
157
+ OPTION "29" @ref:153 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
158
+ OPTION "30" @ref:154 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#quantityRelocate_feature_div[11]/div#selectQuantity/select#quantity
159
+ TEXTBOX @ref:155 [type=hidden] /div/div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[13]/input#twister-plus-price-data-price[1]
160
+ TEXTBOX @ref:156 [type=hidden] /div/div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[13]/input[2]
161
+ TEXTBOX @ref:157 [type=hidden] /div/div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[13]/input[3]
162
+ LINK "Details" @ref:158 /form#addToCart/div#desktop_qualifiedBuyBox[4]/div[13]/div#tp_price_update_feature_ww/div#tp_price_row_ww/a
163
+ BUTTON "Add to cart" @ref:159 [type=submit] /form#addToCart/div#desktop_qualifiedBuyBox[4]/div#addToCart_feature_div[16]/span#atc-declarative/span/input#add-to-cart-button
164
+ BUTTON "Buy Now" @ref:160 [type=submit] /form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/span[2]/input#buy-now-button
165
+ TEXTBOX @ref:161 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/input[1]
166
+ TEXTBOX @ref:162 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/input[2]
167
+ TEXTBOX @ref:163 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/input[3]
168
+ TEXTBOX @ref:164 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/input[4]
169
+ TEXTBOX @ref:165 [type=hidden] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#buyNow_feature_div[17]/div#buyNow/input[5]
170
+ LINK "Details" @ref:166 /div/div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div[19]/a#tp_bbm_info_message_details
171
+ BUTTON "Amazon.com" @ref:167 /form#addToCart/div#desktop_qualifiedBuyBox[4]/div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[3]/a
172
+ BUTTON "30-day refund / replacement" @ref:168 /form#addToCart/div#desktop_qualifiedBuyBox[4]/div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[6]/a
173
+ LINK "Read full return policy" @ref:169 /div#desktop_qualifiedBuyBox[4]/div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[6]/div/a
174
+ BUTTON "Product support included" @ref:170 /div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[15]/div/div[4]/a
175
+ LINK "Learn more" @ref:171 /div#offer-display-features/div[15]/div/div[4]/div/a
176
+ BUTTON "Secure transaction" @ref:172 /div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[15]/div/div[5]/a
177
+ LINK "Learn more" @ref:173 /div#offer-display-features/div[15]/div/div[5]/div/a
178
+ BUTTON "Ships in product packaging" @ref:174 /div#offerDisplayFeatures_desktop[21]/div#offer-display-features/div[15]/div/div[11]/a
179
+ LINK "Learn more" @ref:175 /div#offer-display-features/div[15]/div/div[11]/div/a
180
+ BUTTON "See more" @ref:176 /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#offerDisplayFeatures_desktop[21]/div#offer-display-features/a
181
+ CHECKBOX "Add a gift receipt for easy returns" @ref:177 [type=checkbox] /div#qualifiedBuybox/form#addToCart/div#desktop_qualifiedBuyBox[4]/div#giftingODF_feature_div[48]/label/input#gift-wrap
182
+ LINK "Add to List" @ref:178 /form#addToCart/div#addToWishlist_feature_div[7]/div#wishlistButtonStack/div#add-to-wishlist-button-group[1]/span#wishListMainButton/a
183
+ LINK "wishlist" @ref:179 /div#qualifiedBuybox/form#addToCart/div#addToWishlist_feature_div[7]/div#wishlistButtonStack/div#atwl-inline[3]/a#atwl-inline-link
184
+ TEXTBOX @ref:180 [type=hidden] /div#buybox/div/div#qualifiedBuybox/form#addToCart/div#addToWishlist_feature_div[7]/input#lists-sp-csrf-form-token
185
+ TEXTBOX @ref:181 [type=hidden] /div/div#qualifiedBuybox/form#addToCart/div#addToWishlist_feature_div[7]/form/input#creator-sp-csrf-form-token
186
+ TEXTBOX @ref:182 [type=hidden] /div#rightCol[1]/div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/input#cartAddressNew[1]
187
+ TEXTBOX @ref:183 [type=hidden] /div#rightCol[1]/div#desktop_buybox[7]/div#buybox/div/div#qualifiedBuybox/input#cartAddressUsed[2]
188
+ TEXTBOX @ref:184 [type=hidden] /div#ppd[5]/div#rightCol[1]/div#olpLinkWidget_feature_div[8]/div#all-offers-display[1]/form/input[1]
189
+ TEXTBOX @ref:185 [type=hidden] /div#ppd[5]/div#rightCol[1]/div#olpLinkWidget_feature_div[8]/div#all-offers-display[1]/form/input#all-offers-display-params[2]
190
+ TEXTBOX @ref:186 /div#dp-container/div#ppd[5]/div#rightCol[1]/div#olpLinkWidget_feature_div[8]/div#dynamic-aod-ingress-box[2]/input#aod-aria-label
191
+ BUTTON "New (4) from $999.00$999.00" @ref:187 /div#dp-container/div#ppd[5]/div#rightCol[1]/div#olpLinkWidget_feature_div[8]/div#dynamic-aod-ingress-box[2]/a#aod-ingress-link
192
+ BUTTON @ref:188 /div#dp[1]/div#dp-container/div#ppd[5]/div#leftCol[3]/div#imageBlock_feature_div[1]/span#ssf-primary-widget-desktop
193
+ BUTTON "Share" @ref:189 /div#dp-container/div#ppd[5]/div#leftCol[3]/div#imageBlock_feature_div[1]/span#ssf-primary-widget-desktop/a
194
+ RADIO @ref:190 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li[2]/span#a-autoid-1/input
195
+ RADIO @ref:191 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li[3]/span#a-autoid-2/input
196
+ RADIO "16+" @ref:192 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[4]/span#a-autoid-3/input
197
+ RADIO "15+" @ref:193 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[5]/span#a-autoid-4/input
198
+ RADIO "14+" @ref:194 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[6]/span#a-autoid-5/input
199
+ RADIO "13+" @ref:195 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[7]/span#a-autoid-6/input
200
+ RADIO "12+" @ref:196 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[8]/span#a-autoid-7/input
201
+ RADIO "11+" @ref:197 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[9]/span#a-autoid-8/input
202
+ RADIO @ref:198 [type=submit] /div#imageBlock[1]/div#altImages[1]/ul/li.item[10]/span#a-autoid-9/input
203
+ BUTTON "javascript:void(0)" @ref:199 /div#imageBlock[1]/div#main-image-container[1]/div#video-outer-container[1]/div#main-video-container[1]/div[1]/a
204
+ BUTTON "Click to play video" @ref:200 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
205
+ BUTTON "Play" @ref:201 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button[1]
206
+ BUTTON "Mute" @ref:202 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
207
+ SLIDER "Volume Level" @ref:203 /div#main-image-container[1]/div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div
208
+ SLIDER "Scrubber bar" @ref:204 /div#main-image-container[1]/div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div
209
+ BUTTON "Seek to live, currently behind live" @ref:205 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button[2]
210
+ BUTTON "Playback Rate" @ref:206 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
211
+ BUTTON "Chapters" @ref:207 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
212
+ BUTTON "Descriptions" @ref:208 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
213
+ BUTTON "Captions" @ref:209 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
214
+ BUTTON "Audio Track" @ref:210 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button
215
+ BUTTON "Fullscreen" @ref:211 /div#video-outer-container[1]/div#main-video-container[1]/div[2]/div/div/button[3]
216
+ BUTTON @ref:212 /div#imageBlock_feature_div[1]/div#imageBlock[1]/div#main-image-container[1]/ul.list/li.item[1]/div#imgTagWrapperId
217
+ LINK "Flash Player" @ref:213 /div#imageBlock_feature_div[1]/div#imageBlock[1]/div#main-image-container[1]/ul.list/li#noFlashContent[4]/a
218
+ LINK "Click to see full view" @ref:214 /div#leftCol[3]/div#imageBlock_feature_div[1]/div#imageBlock[1]/div#image-canvas-caption[2]/span#canvasCaption/a
219
+ TAB "VIDEOS" @ref:215 /div#leftCol[3]/div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivVideosTabHeading[1]
220
+ LINK "VIDEOS" @ref:216 /div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivVideosTabHeading[1]/a
221
+ TAB "360° VIEW" @ref:217 /div#leftCol[3]/div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#iv360TabHeading[2]
222
+ LINK "360° VIEW" @ref:218 /div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#iv360TabHeading[2]/a
223
+ TAB "IMAGES" @ref:219 /div#leftCol[3]/div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivImagesTabHeading[3]
224
+ LINK "IMAGES" @ref:220 /div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivImagesTabHeading[3]/a
225
+ TAB @ref:221 /div#leftCol[3]/div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivDimensionTabHeading[4]
226
+ LINK @ref:222 /div#imageBlock_feature_div[1]/div#a-popover-immersiveView[4]/div#iv-tab-view-container/ul/li#ivDimensionTabHeading[4]/a
227
+ BUTTON "javascript:void(0)" @ref:223 /div#ivVideoBlock/div/div/div/div[1]/a
228
+ BUTTON "Click to play video" @ref:224 /div#ivVideoBlock/div/div/div/div[2]/button
229
+ BUTTON "Play" @ref:225 /div#ivVideoBlock/div/div/div/div[2]/button[1]
230
+ BUTTON "Mute" @ref:226 /div#ivVideoBlock/div/div/div/div[2]/button
231
+ SLIDER "Volume Level" @ref:227 /div#ivVideosTab[1]/div#ivVideoBlock/div/div/div/div[2]
232
+ SLIDER "Scrubber bar" @ref:228 /div#ivVideosTab[1]/div#ivVideoBlock/div/div/div/div[2]
233
+ BUTTON "Seek to live, currently behind live" @ref:229 /div#ivVideoBlock/div/div/div/div[2]/button[2]
234
+ BUTTON "Playback Rate" @ref:230 /div#ivVideoBlock/div/div/div/div[2]/button
235
+ BUTTON "Chapters" @ref:231 /div#ivVideoBlock/div/div/div/div[2]/button
236
+ BUTTON "Descriptions" @ref:232 /div#ivVideoBlock/div/div/div/div[2]/button
237
+ BUTTON "Captions" @ref:233 /div#ivVideoBlock/div/div/div/div[2]/button
238
+ BUTTON "Audio Track" @ref:234 /div#ivVideoBlock/div/div/div/div[2]/button
239
+ BUTTON "Fullscreen" @ref:235 /div#ivVideoBlock/div/div/div/div[2]/button[3]
240
+ BUTTON "javascript:void(0)" @ref:236 /div#iv-tab-view-container/div#ivVideosTab[1]/div#ivVideoBlock/div/span/a
241
+ LINK "Email" @ref:237 /div/ul/li[1]/div/span#vse-share-email/a
242
+ LINK "Pinterest" @ref:238 /div/ul/li[2]/div/span#vse-share-pinterest/a
243
+ LINK "Facebook" @ref:239 /div/ul/li[3]/div/span#vse-share-facebook/a
244
+ LINK "X" @ref:240 /div/ul/li[4]/div/span#vse-share-twitter/a
245
+ LINK "Copy Link" @ref:241 /div/ul/li[5]/div/span#vse-share-copy/a
246
+ LINK "See full review" @ref:242 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivVideosTab[1]/div#ivVideoBlock/div/a#vse-customer-review-link
247
+ LINK "ASUS Computer International Direct" @ref:243 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivVideosTab[1]/div#ivVideoBlock/div/a
248
+ LINK "ASUS Computer International Direct" @ref:244 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivVideosTab[1]/div#ivVideoBlock/div/a
249
+ LINK "Click to go to amazon influencer info page" @ref:245 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivVideosTab[1]/div#ivVideoBlock/div/a
250
+ BUTTON "Zoom In" @ref:246 /div#iv-tab-view-container/div#ivImagesTab[3]/div#ivMain/div#ivStage[1]/div#ivZoom/div#ivZoomIn
251
+ BUTTON "Zoom Out" @ref:247 /div#iv-tab-view-container/div#ivImagesTab[3]/div#ivMain/div#ivStage[1]/div#ivZoom/div#ivZoomOut
252
+ BUTTON "Zoom In On Image" @ref:248 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivImagesTab[3]/div#ivMain/div#ivStage[1]/div#ivLargeImage
253
+ BUTTON @ref:249 /div#a-popover-immersiveView[4]/div#iv-tab-view-container/div#ivImagesTab[3]/div#ivMain/div#ivThumbColumn[2]/div#ivThumbs[3]
254
+ BUTTON "javascript:void(0)" @ref:250 /div#dp-container/div#ppd[5]/div#leftCol[3]/div#energyEfficiency_feature_div[4]/div#energyEfficiency/a
255
+ LINK @ref:251 /div#dp[1]/div#dp-container/div#ppd[5]/div#leftCol[3]/div#dyrWebIngress_feature_div[5]/div#dyr-ingress-content
256
+ LINK "Visit the ASUS Store" @ref:252 /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#bylineInfo_feature_div[2]/a#bylineInfo
257
+ BUTTON "4.5 4.5 out of 5 stars" @ref:253 /div#ppd[5]/div#centerCol[4]/div[3]/div#averageCustomerReviews/span#acrPopover/a
258
+ LINK "(889)" @ref:254 /div#dp-container/div#ppd[5]/div#centerCol[4]/div[3]/div#averageCustomerReviews/a#acrCustomerReviewLink
259
+ LINK @ref:255 /div#dp-container/div#ppd[5]/div#centerCol[4]/div#apex_desktop[16]/div[3]/a
260
+ LINK "Learn more" @ref:256 /div#ppd[5]/div#centerCol[4]/div#apex_desktop[16]/div[3]/div/a
261
+ BUTTON "Details" @ref:257 /div#dp-container/div#ppd[5]/div#centerCol[4]/div#apex_desktop[16]/div#amazonGlobal_feature_div[33]/a
262
+ LINK "Estimated Import Charges" @ref:258 /div#centerCol[4]/div#apex_desktop[16]/div#amazonGlobal_feature_div[33]/div#a-popover-NEW_0/table/a
263
+ RADIO "27" OLED QHD 360Hz /* Temporary CSS overrides f..." @ref:259 [type=submit] /div[2]/div/ul/li[1]/span#style_name_1/input
264
+ RADIO "32" OLED 4K 240Hz UHD G-SYNC /* Temporary CSS o..." @ref:260 [type=submit] /div[2]/div/ul/li[2]/span#style_name_2/input
265
+ RADIO "34" Cruved OLED UWQHD 175Hz /* Temporary CSS ov..." @ref:261 [type=submit] /div[2]/div/ul/li[3]/span#style_name_3/input
266
+ RADIO "27" FHD 170Hz G-SYNC Currently unavailable." @ref:262 [type=submit] /div[2]/div/ul/li[4]/span#style_name_0/input
267
+ LINK "←Previous" @ref:263 /div[2]/div/nav/ul/li[1]/a
268
+ LINK "1" @ref:264 /div[2]/div/nav/ul/li[2]/a
269
+ LINK "Next→" @ref:265 /div[2]/div/nav/ul/li[3]/a
270
+ TEXTBOX @ref:266 [type=hidden] /div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/div#twister-plus-feature[2]/input#twister-plus-active-cards[1]
271
+ CHECKBOX @ref:267 [type=checkbox] /div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/div#twister-plus-feature[2]/input#twister-plus-checkbox[2]
272
+ TEXTBOX @ref:268 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/input#twister-plus-device-type[1]
273
+ TEXTBOX @ref:269 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/input#twister-plus-eligible[2]
274
+ TEXTBOX @ref:270 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/input#ccCardsRendered[3]
275
+ TEXTBOX @ref:271 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/input#twister-plus-asin[4]
276
+ TEXTBOX @ref:272 [type=hidden] /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/input#twister-plus-offer-listing-id[5]
277
+ BUTTON @ref:273 /div#dp[1]/div#dp-container/div#ppd[5]/div#centerCol[4]/div#twisterPlusWWDesktop[41]/div#twister-plus-dp-bg
278
+ BUTTON "Sign in to continue" @ref:274 /div#dp-container/div#ppd[5]/div#centerCol[4]/div[42]/div/a
279
+ LINK "See more product details" @ref:275 /div#dp-container/div#ppd[5]/div#centerCol[4]/div#featurebullets_feature_div[47]/div#feature-bullets/a#seeMoreDetailsLink
280
+ TEXTBOX @ref:276 [type=hidden] /div#ppd[5]/div#centerCol[4]/div#olp_feature_div[56]/div#all-offers-display/form/input[1]
281
+ TEXTBOX @ref:277 [type=hidden] /div#ppd[5]/div#centerCol[4]/div#olp_feature_div[56]/div#all-offers-display/form/input#all-offers-display-params[2]
282
+ LINK "Report an issue with this product or seller" @ref:278 /div#dp-container/div#ppd[5]/div#centerCol[4]/div#tellAmazon_feature_div[58]/div/a
283
+ LINK "ref=vp d cpf substitute widget prsubs pd" @ref:279 /div#ppd[5]/div#centerCol[4]/div#valuePick_feature_div[61]/div#valuePick_container/div#value-pick-ac/a
284
+ LINK "ASUS ProArt Display 15.6” 4K Pen Display (PA169..." @ref:280 /div#centerCol[4]/div#valuePick_feature_div[61]/div#valuePick_container/div#value-pick-ac/div#value-pick-title-row[1]/a#value-pick-title-view
285
+ LINK "1979 ratings" @ref:281 /div#ppd[5]/div#centerCol[4]/div#valuePick_feature_div[61]/div#valuePick_container/div#value-pick-ac/a
286
+ TEXTBOX @ref:282 [type=hidden] /div#a-page[1]/div#dp[1]/div#dp-container/div[14]/div[1]/input
287
+ LINK "Sponsored" @ref:283 /div#dp[1]/div#dp-container/div[14]/div[1]/div[1]/a
288
+ LINK "Start over" @ref:284 /div#dp[1]/div#dp-container/div[14]/div[1]/div[1]/a
289
+ BUTTON "Previous page of related Sponsored Products" @ref:285 /div#a-page[1]/div#dp[1]/div#dp-container/div[14]/div[1]/a#a-autoid-10
290
+ BUTTON "Feedback" @ref:286 /div[14]/div[1]/ol/li[1]/div/a
291
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:287 /div[14]/div[1]/ol/li[1]/div/a[1]
292
+ LINK "4.3 out of 5 stars 576 ratings" @ref:288 /div[14]/div[1]/ol/li[1]/div/a
293
+ LINK "Limited time deal" @ref:289 /div[14]/div[1]/ol/li[1]/div/a[2]
294
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:290 /div[14]/div[1]/ol/li[1]/div/a
295
+ LINK "click" @ref:291 /div[14]/div[1]/ol/li[1]/div/a[3]
296
+ BUTTON "Feedback" @ref:292 /div[14]/div[1]/ol/li[2]/div/a
297
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:293 /div[14]/div[1]/ol/li[2]/div/a[1]
298
+ LINK "4.5 out of 5 stars 267 ratings" @ref:294 /div[14]/div[1]/ol/li[2]/div/a
299
+ LINK "Limited time deal" @ref:295 /div[14]/div[1]/ol/li[2]/div/a[2]
300
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:296 /div[14]/div[1]/ol/li[2]/div/a
301
+ LINK "click" @ref:297 /div[14]/div[1]/ol/li[2]/div/a[3]
302
+ BUTTON "Feedback" @ref:298 /div[14]/div[1]/ol/li[3]/div/a
303
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:299 /div[14]/div[1]/ol/li[3]/div/a[1]
304
+ LINK "4.7 out of 5 stars 19 ratings" @ref:300 /div[14]/div[1]/ol/li[3]/div/a
305
+ LINK "Amazon's Choice" @ref:301 /div[14]/div[1]/ol/li[3]/div/a
306
+ LINK "Ends in 06:09:48 (function(f) {var _np=(window...." @ref:302 /div[14]/div[1]/ol/li[3]/div/a[2]
307
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:303 /div[14]/div[1]/ol/li[3]/div/a
308
+ LINK "click" @ref:304 /div[14]/div[1]/ol/li[3]/div/a[3]
309
+ BUTTON "Feedback" @ref:305 /div[14]/div[1]/ol/li[4]/div/a
310
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:306 /div[14]/div[1]/ol/li[4]/div/a[1]
311
+ LINK "4.3 out of 5 stars 183 ratings" @ref:307 /div[14]/div[1]/ol/li[4]/div/a
312
+ LINK "Limited time deal" @ref:308 /div[14]/div[1]/ol/li[4]/div/a[2]
313
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:309 /div[14]/div[1]/ol/li[4]/div/a
314
+ LINK "click" @ref:310 /div[14]/div[1]/ol/li[4]/div/a[3]
315
+ BUTTON "Feedback" @ref:311 /div[14]/div[1]/ol/li[5]/div/a
316
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:312 /div[14]/div[1]/ol/li[5]/div/a[1]
317
+ LINK "4.4 out of 5 stars 1,262 ratings" @ref:313 /div[14]/div[1]/ol/li[5]/div/a
318
+ LINK "Limited time deal" @ref:314 /div[14]/div[1]/ol/li[5]/div/a[2]
319
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:315 /div[14]/div[1]/ol/li[5]/div/a
320
+ LINK "click" @ref:316 /div[14]/div[1]/ol/li[5]/div/a[3]
321
+ BUTTON "Feedback" @ref:317 /div[14]/div[1]/ol/li[6]/div/a
322
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:318 /div[14]/div[1]/ol/li[6]/div/a[1]
323
+ LINK "4.6 out of 5 stars 86 ratings" @ref:319 /div[14]/div[1]/ol/li[6]/div/a
324
+ LINK "Limited time deal" @ref:320 /div[14]/div[1]/ol/li[6]/div/a[2]
325
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:321 /div[14]/div[1]/ol/li[6]/div/a
326
+ LINK "click" @ref:322 /div[14]/div[1]/ol/li[6]/div/a[3]
327
+ BUTTON "Feedback" @ref:323 /div[14]/div[1]/ol/li[7]/div/a
328
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:324 /div[14]/div[1]/ol/li[7]/div/a[1]
329
+ LINK "4.3 out of 5 stars 2,113 ratings" @ref:325 /div[14]/div[1]/ol/li[7]/div/a
330
+ LINK "Limited time deal" @ref:326 /div[14]/div[1]/ol/li[7]/div/a[2]
331
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:327 /div[14]/div[1]/ol/li[7]/div/a
332
+ LINK "click" @ref:328 /div[14]/div[1]/ol/li[7]/div/a[3]
333
+ BUTTON "Next page of related Sponsored Products" @ref:329 /div#a-page[1]/div#dp[1]/div#dp-container/div[14]/div[1]/a#a-autoid-11
334
+ TEXTBOX @ref:330 [type=hidden] /div#dp[1]/div#dp-container/div[15]/div/div#sp_detail[1]/input
335
+ LINK "Sponsored" @ref:331 /div#dp-container/div[15]/div/div#sp_detail[1]/div#sp_detail_heading[1]/a#sp_detail_feedbackMessage
336
+ LINK "Start over" @ref:332 /div#dp-container/div[15]/div/div#sp_detail[1]/div#sp_detail_heading[1]/a
337
+ BUTTON "Previous page of related Sponsored Products" @ref:333 /div#dp[1]/div#dp-container/div[15]/div/div#sp_detail[1]/a#a-autoid-31
338
+ BUTTON "Feedback" @ref:334 /div/div#sp_detail[1]/ol/li[1]/div#sp_detail_B0FND8BYQS/a
339
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:335 /div/div#sp_detail[1]/ol/li[1]/div#sp_detail_B0FND8BYQS/a#sp_detail_B0FND8BYQS_title[1]
340
+ LINK "5.0 out of 5 stars 3 ratings" @ref:336 /div/div#sp_detail[1]/ol/li[1]/div#sp_detail_B0FND8BYQS/a
341
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:337 /div/div#sp_detail[1]/ol/li[1]/div#sp_detail_B0FND8BYQS/a
342
+ LINK "click" @ref:338 /div/div#sp_detail[1]/ol/li[1]/div#sp_detail_B0FND8BYQS/a[2]
343
+ BUTTON "Feedback" @ref:339 /div/div#sp_detail[1]/ol/li[2]/div#sp_detail_B0BCK1K44F/a
344
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:340 /div/div#sp_detail[1]/ol/li[2]/div#sp_detail_B0BCK1K44F/a#sp_detail_B0BCK1K44F_title[1]
345
+ LINK "3.8 out of 5 stars 158 ratings" @ref:341 /div/div#sp_detail[1]/ol/li[2]/div#sp_detail_B0BCK1K44F/a
346
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:342 /div/div#sp_detail[1]/ol/li[2]/div#sp_detail_B0BCK1K44F/a
347
+ LINK "click" @ref:343 /div/div#sp_detail[1]/ol/li[2]/div#sp_detail_B0BCK1K44F/a[2]
348
+ BUTTON "Feedback" @ref:344 /div/div#sp_detail[1]/ol/li[3]/div#sp_detail_B0FS3LV3WG/a
349
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:345 /div/div#sp_detail[1]/ol/li[3]/div#sp_detail_B0FS3LV3WG/a#sp_detail_B0FS3LV3WG_title[1]
350
+ LINK "4.3 out of 5 stars 13 ratings" @ref:346 /div/div#sp_detail[1]/ol/li[3]/div#sp_detail_B0FS3LV3WG/a
351
+ LINK "$799.99$799.99" @ref:347 /div/div#sp_detail[1]/ol/li[3]/div#sp_detail_B0FS3LV3WG/a
352
+ LINK "click" @ref:348 /div/div#sp_detail[1]/ol/li[3]/div#sp_detail_B0FS3LV3WG/a[2]
353
+ BUTTON "Feedback" @ref:349 /div/div#sp_detail[1]/ol/li[4]/div#sp_detail_B0FR44GCLH/a
354
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:350 /div/div#sp_detail[1]/ol/li[4]/div#sp_detail_B0FR44GCLH/a#sp_detail_B0FR44GCLH_title[1]
355
+ LINK "5.0 out of 5 stars 3 ratings" @ref:351 /div/div#sp_detail[1]/ol/li[4]/div#sp_detail_B0FR44GCLH/a
356
+ LINK "$184.99$184.99" @ref:352 /div/div#sp_detail[1]/ol/li[4]/div#sp_detail_B0FR44GCLH/a
357
+ LINK "click" @ref:353 /div/div#sp_detail[1]/ol/li[4]/div#sp_detail_B0FR44GCLH/a[2]
358
+ BUTTON "Feedback" @ref:354 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a
359
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:355 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a#sp_detail_B0D682HF6R_title[1]
360
+ LINK "4.4 out of 5 stars 3,140 ratings" @ref:356 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a
361
+ LINK "Amazon's Choice" @ref:357 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a
362
+ LINK "$499.99$499.99" @ref:358 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a
363
+ LINK "click" @ref:359 /div/div#sp_detail[1]/ol/li[5]/div#sp_detail_B0D682HF6R/a[2]
364
+ BUTTON "Feedback" @ref:360 /div/div#sp_detail[1]/ol/li[6]/div#sp_detail_B0D1YBBMYN/a
365
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:361 /div/div#sp_detail[1]/ol/li[6]/div#sp_detail_B0D1YBBMYN/a#sp_detail_B0D1YBBMYN_title[1]
366
+ LINK "4.0 out of 5 stars 491 ratings" @ref:362 /div/div#sp_detail[1]/ol/li[6]/div#sp_detail_B0D1YBBMYN/a
367
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:363 /div/div#sp_detail[1]/ol/li[6]/div#sp_detail_B0D1YBBMYN/a
368
+ LINK "click" @ref:364 /div/div#sp_detail[1]/ol/li[6]/div#sp_detail_B0D1YBBMYN/a[2]
369
+ BUTTON "Feedback" @ref:365 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a
370
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:366 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a#sp_detail_B0FRMND9J6_title[1]
371
+ LINK "4.5 out of 5 stars 608 ratings" @ref:367 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a
372
+ LINK "Amazon's Choice" @ref:368 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a
373
+ LINK "$599.99$599.99" @ref:369 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a
374
+ LINK "click" @ref:370 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a[2]
375
+ LINK "Save $150.00 with coupon" @ref:371 /div/div#sp_detail[1]/ol/li[7]/div#sp_detail_B0FRMND9J6/a
376
+ BUTTON "Next page of related Sponsored Products" @ref:372 /div#dp[1]/div#dp-container/div[15]/div/div#sp_detail[1]/a#a-autoid-32
377
+ BUTTON "Play Video" @ref:373 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button
378
+ BUTTON "Play" @ref:374 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button[1]
379
+ SLIDER "Progress Bar" @ref:375 /div[18]/div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]
380
+ BUTTON "Captions" @ref:376 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button
381
+ MENUITEM "captions settings, opens captions settings dialog" @ref:377 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/ul/li[1]
382
+ BUTTON "Mute" @ref:378 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button[2]
383
+ COMBOBOX "Text Color" @ref:379 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
384
+ OPTION "Text Color White" @ref:380 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
385
+ OPTION "Text Color Black" @ref:381 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
386
+ OPTION "Text Color Red" @ref:382 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
387
+ OPTION "Text Color Green" @ref:383 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
388
+ OPTION "Text Color Blue" @ref:384 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
389
+ OPTION "Text Color Yellow" @ref:385 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[6]
390
+ OPTION "Text Color Magenta" @ref:386 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[7]
391
+ OPTION "Text Color Cyan" @ref:387 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[8]
392
+ COMBOBOX "Text Transparency" @ref:388 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
393
+ OPTION "Text Transparency Opaque" @ref:389 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
394
+ OPTION "Text Transparency Semi-Transparent" @ref:390 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
395
+ COMBOBOX "Background Color" @ref:391 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
396
+ OPTION "Background Color Black" @ref:392 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
397
+ OPTION "Background Color White" @ref:393 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
398
+ OPTION "Background Color Red" @ref:394 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
399
+ OPTION "Background Color Green" @ref:395 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
400
+ OPTION "Background Color Blue" @ref:396 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
401
+ OPTION "Background Color Yellow" @ref:397 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[6]
402
+ OPTION "Background Color Magenta" @ref:398 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[7]
403
+ OPTION "Background Color Cyan" @ref:399 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[8]
404
+ COMBOBOX "Background Transparency" @ref:400 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
405
+ OPTION "Background Transparency Opaque" @ref:401 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
406
+ OPTION "Background Transparency Semi-Transparent" @ref:402 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
407
+ OPTION "Background Transparency Transparent" @ref:403 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
408
+ COMBOBOX "Window Color" @ref:404 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
409
+ OPTION "Window Color Black" @ref:405 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
410
+ OPTION "Window Color White" @ref:406 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
411
+ OPTION "Window Color Red" @ref:407 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
412
+ OPTION "Window Color Green" @ref:408 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
413
+ OPTION "Window Color Blue" @ref:409 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
414
+ OPTION "Window Color Yellow" @ref:410 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[6]
415
+ OPTION "Window Color Magenta" @ref:411 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[7]
416
+ OPTION "Window Color Cyan" @ref:412 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[8]
417
+ COMBOBOX "Window Transparency" @ref:413 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
418
+ OPTION "Window Transparency Transparent" @ref:414 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
419
+ OPTION "Window Transparency Semi-Transparent" @ref:415 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
420
+ OPTION "Window Transparency Opaque" @ref:416 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
421
+ COMBOBOX "Font Size" @ref:417 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
422
+ OPTION "Font Size 50%" @ref:418 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
423
+ OPTION "Font Size 75%" @ref:419 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
424
+ OPTION "Font Size 100%" @ref:420 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
425
+ OPTION "Font Size 125%" @ref:421 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
426
+ OPTION "Font Size 150%" @ref:422 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
427
+ OPTION "Font Size 175%" @ref:423 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[6]
428
+ OPTION "Font Size 200%" @ref:424 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[7]
429
+ OPTION "Font Size 300%" @ref:425 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[8]
430
+ OPTION "Font Size 400%" @ref:426 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[9]
431
+ COMBOBOX "Text Edge Style" @ref:427 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
432
+ OPTION "Text Edge Style None" @ref:428 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
433
+ OPTION "Text Edge Style Raised" @ref:429 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
434
+ OPTION "Text Edge Style Depressed" @ref:430 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
435
+ OPTION "Text Edge Style Uniform" @ref:431 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
436
+ OPTION "Text Edge Style Dropshadow" @ref:432 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
437
+ COMBOBOX "Font Family" @ref:433 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select
438
+ OPTION "Font Family Proportional Sans-Serif" @ref:434 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[1]
439
+ OPTION "Font Family Monospace Sans-Serif" @ref:435 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[2]
440
+ OPTION "Font Family Proportional Serif" @ref:436 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[3]
441
+ OPTION "Font Family Monospace Serif" @ref:437 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[4]
442
+ OPTION "Font Family Casual" @ref:438 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[5]
443
+ OPTION "Font Family Script" @ref:439 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[6]
444
+ OPTION "Font Family Small Caps" @ref:440 /div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/select/option[7]
445
+ BUTTON "Reset restore all settings to the default values" @ref:441 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button[1]
446
+ BUTTON "Done" @ref:442 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button[2]
447
+ BUTTON "Close Modal Dialog" @ref:443 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div[1]/button
448
+ LINK "amzn1.account" @ref:444 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div#vse-overlay-features[2]/a
449
+ LINK "clark" @ref:445 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div#vse-overlay-features[2]/a
450
+ LINK "Earns commissions" @ref:446 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div#vse-overlay-features[2]/a
451
+ LINK "See Full Review" @ref:447 /div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]/div#vse-overlay-features[2]/a
452
+ BUTTON "Play" @ref:448 /div#dp-container/div[18]/div[4]/div/div#vftphero[2]/div#ive-hero-video-player[1]
453
+ BUTTON "Collapse all" @ref:449 (expanded) /div#dp[1]/div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/a
454
+ BUTTON "Summary" @ref:450 (expanded) /div#dp[1]/div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/a
455
+ BUTTON "Other Technical Details" @ref:451 (expanded) /div#dp[1]/div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/a
456
+ BUTTON "4.5 4.5 out of 5 stars" @ref:452 /div#productDetails_db_sections/div.table-padding/table/div#averageCustomerReviews/span#acrPopover/a
457
+ LINK "(889)" @ref:453 /div#prodDetails/div#productDetails_db_sections/div.table-padding/table/div#averageCustomerReviews/a#acrCustomerReviewLink
458
+ LINK "See Top 100 in Electronics" @ref:454 /div#productDetails_db_sections/div.table-padding/table/ul/li[1]/a
459
+ LINK "Computer Monitors" @ref:455 /div#productDetails_db_sections/div.table-padding/table/ul/li[2]/a
460
+ LINK "Click here" @ref:456 /div[18]/div#productDetails_feature_div[7]/div#prodDetails/div/div.table-padding[2]/a
461
+ TEXTBOX @ref:457 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#aapiCsrfToken[1]
462
+ TEXTBOX @ref:458 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#isStateRequired[2]
463
+ TEXTBOX @ref:459 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#isStoreRequired[3]
464
+ TEXTBOX @ref:460 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#aapiEndpoint[4]
465
+ TEXTBOX @ref:461 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#modalHeader[5]
466
+ TEXTBOX @ref:462 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#productCategory[6]
467
+ TEXTBOX @ref:463 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#productImageUrl[7]
468
+ TEXTBOX @ref:464 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#priceSymbol[8]
469
+ TEXTBOX @ref:465 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#priceValue[9]
470
+ TEXTBOX @ref:466 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#productTitle[10]
471
+ TEXTBOX @ref:467 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#currencyOfPreference[11]
472
+ TEXTBOX @ref:468 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#absoluteUrlPrefix[12]
473
+ TEXTBOX @ref:469 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#customerId[13]
474
+ TEXTBOX @ref:470 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#isCustomerLoggedIn[14]
475
+ TEXTBOX @ref:471 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#isCurrentGlOnlineOnly[15]
476
+ TEXTBOX @ref:472 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#asin[16]
477
+ TEXTBOX @ref:473 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#marketplaceId[17]
478
+ TEXTBOX @ref:474 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#countryCode[18]
479
+ TEXTBOX @ref:475 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#lowerPriceInfo[19]
480
+ TEXTBOX @ref:476 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#lowerPriceWhere[20]
481
+ TEXTBOX @ref:477 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelPermalink[21]
482
+ TEXTBOX @ref:478 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelOnline[22]
483
+ TEXTBOX @ref:479 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelOffline[23]
484
+ TEXTBOX @ref:480 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#lowerPriceSignIn[24]
485
+ TEXTBOX @ref:481 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelStoreName[25]
486
+ TEXTBOX @ref:482 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#addressCity[26]
487
+ TEXTBOX @ref:483 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#addressState[27]
488
+ TEXTBOX @ref:484 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#selectProvince[28]
489
+ TEXTBOX @ref:485 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelDateOfPrice[29]
490
+ TEXTBOX @ref:486 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelUrl[30]
491
+ TEXTBOX @ref:487 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelPrice[31]
492
+ TEXTBOX @ref:488 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#labelShipping[32]
493
+ TEXTBOX @ref:489 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#submitFeedback[33]
494
+ TEXTBOX @ref:490 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorNoType[34]
495
+ TEXTBOX @ref:491 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorBadPrice[35]
496
+ TEXTBOX @ref:492 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorBadPriceShipping[36]
497
+ TEXTBOX @ref:493 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorInvalidUrl[37]
498
+ TEXTBOX @ref:494 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorSubmission[38]
499
+ TEXTBOX @ref:495 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorEmptyFields[39]
500
+ TEXTBOX @ref:496 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorMissingCity[40]
501
+ TEXTBOX @ref:497 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#thankFeedback[41]
502
+ TEXTBOX @ref:498 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#errorEmptyUrl[42]
503
+ TEXTBOX @ref:499 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#offlineStoresList[43]
504
+ TEXTBOX @ref:500 [type=hidden] /div#dp-container/div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/input#statesList[44]
505
+ BUTTON "tell us about a lower price?" @ref:501 /div[18]/div#productDetails_feature_div[7]/div#prodDetails/div.table-padding/div#pricingFeedbackDiv[1]/a
506
+ RADIO "Website (Online)" @ref:502 [type=radio] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#onlineRadioContainer/input#pricingFeedback_onlineRadio
507
+ TEXTBOX "URL *:" @ref:503 [maxlength=500] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/input#onlineUrl
508
+ SPINBUTTON "Price ($) *:" @ref:504 [type=number maxlength=10] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/input#onlinePriceRaw
509
+ SPINBUTTON "Shipping cost ($):" @ref:505 [type=number maxlength=10] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/input#onlineShippingRaw
510
+ COMBOBOX "01 02 03 04 05 06 07 08 09 10 11 12" @ref:506 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar
511
+ COMBOBOX "Select Month" @ref:507 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
512
+ OPTION @ref:508 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth/option#onlineMonthOptionDefault[1]
513
+ OPTION "01" @ref:509 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
514
+ OPTION "02" @ref:510 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
515
+ OPTION "03" @ref:511 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
516
+ OPTION "04" @ref:512 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
517
+ OPTION "05" @ref:513 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
518
+ OPTION "06" @ref:514 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
519
+ OPTION "07" @ref:515 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
520
+ OPTION "08" @ref:516 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
521
+ OPTION "09" @ref:517 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
522
+ OPTION "10" @ref:518 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
523
+ OPTION "11" @ref:519 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
524
+ OPTION "12" @ref:520 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineMonth
525
+ BUTTON @ref:521 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/span#a-autoid-12/span#a-autoid-12-announce
526
+ COMBOBOX "01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16..." @ref:522 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar
527
+ COMBOBOX "Select Day" @ref:523 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
528
+ OPTION @ref:524 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay/option#onlineDateOptionDefault[1]
529
+ OPTION "01" @ref:525 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
530
+ OPTION "02" @ref:526 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
531
+ OPTION "03" @ref:527 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
532
+ OPTION "04" @ref:528 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
533
+ OPTION "05" @ref:529 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
534
+ OPTION "06" @ref:530 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
535
+ OPTION "07" @ref:531 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
536
+ OPTION "08" @ref:532 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
537
+ OPTION "09" @ref:533 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
538
+ OPTION "10" @ref:534 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
539
+ OPTION "11" @ref:535 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
540
+ OPTION "12" @ref:536 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
541
+ OPTION "13" @ref:537 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
542
+ OPTION "14" @ref:538 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
543
+ OPTION "15" @ref:539 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
544
+ OPTION "16" @ref:540 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
545
+ OPTION "17" @ref:541 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
546
+ OPTION "18" @ref:542 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
547
+ OPTION "19" @ref:543 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
548
+ OPTION "20" @ref:544 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
549
+ OPTION "21" @ref:545 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
550
+ OPTION "22" @ref:546 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
551
+ OPTION "23" @ref:547 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
552
+ OPTION "24" @ref:548 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
553
+ OPTION "25" @ref:549 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
554
+ OPTION "26" @ref:550 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
555
+ OPTION "27" @ref:551 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
556
+ OPTION "28" @ref:552 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
557
+ OPTION "29" @ref:553 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
558
+ OPTION "30" @ref:554 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
559
+ OPTION "31" @ref:555 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineDay
560
+ BUTTON @ref:556 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/span#a-autoid-13/span#a-autoid-13-announce
561
+ COMBOBOX @ref:557 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar
562
+ COMBOBOX "Select Year" @ref:558 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineYear
563
+ OPTION @ref:559 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/select#onlineYear/option#onlineYearOptionDefault
564
+ BUTTON @ref:560 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_onlineInput/div#onlineCalendar/span#a-autoid-14/span#a-autoid-14-announce
565
+ RADIO "Store (Offline)" @ref:561 [type=radio] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#offlineRadioContainer/input#pricingFeedback_offlineRadio
566
+ COMBOBOX "Store name *:" @ref:562 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#storeValue[1]/select#offlineStoreName
567
+ OPTION "Enter the store name where you found this product" @ref:563 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#storeValue[1]/select#offlineStoreName/option#storeDefaultOption
568
+ BUTTON "Enter the store name where you found this product" @ref:564 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#storeValue[1]/span#offlineStoreNameMain
569
+ TEXTBOX "City *:" @ref:565 [maxlength=100] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/input#offlineCity
570
+ COMBOBOX "State:" @ref:566 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/span#stateValue/select#offlineState
571
+ OPTION "Please select province" @ref:567 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/span#stateValue/select#offlineState/option#stateDefaultOption
572
+ BUTTON "Please select province" @ref:568 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/span#stateValue/span#offlineStateMain
573
+ SPINBUTTON "Price ($) *:" @ref:569 [type=number maxlength=10] /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/input#offlinePriceRaw
574
+ COMBOBOX "01 02 03 04 05 06 07 08 09 10 11 12" @ref:570 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar
575
+ COMBOBOX "Select Month" @ref:571 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
576
+ OPTION @ref:572 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth/option#offlineMonthOptionDefault[1]
577
+ OPTION "01" @ref:573 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
578
+ OPTION "02" @ref:574 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
579
+ OPTION "03" @ref:575 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
580
+ OPTION "04" @ref:576 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
581
+ OPTION "05" @ref:577 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
582
+ OPTION "06" @ref:578 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
583
+ OPTION "07" @ref:579 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
584
+ OPTION "08" @ref:580 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
585
+ OPTION "09" @ref:581 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
586
+ OPTION "10" @ref:582 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
587
+ OPTION "11" @ref:583 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
588
+ OPTION "12" @ref:584 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineMonth
589
+ BUTTON @ref:585 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/span#a-autoid-15/span#a-autoid-15-announce
590
+ COMBOBOX "01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16..." @ref:586 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar
591
+ COMBOBOX "Select day" @ref:587 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
592
+ OPTION @ref:588 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay/option#offlineDateOptionDefault[1]
593
+ OPTION "01" @ref:589 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
594
+ OPTION "02" @ref:590 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
595
+ OPTION "03" @ref:591 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
596
+ OPTION "04" @ref:592 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
597
+ OPTION "05" @ref:593 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
598
+ OPTION "06" @ref:594 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
599
+ OPTION "07" @ref:595 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
600
+ OPTION "08" @ref:596 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
601
+ OPTION "09" @ref:597 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
602
+ OPTION "10" @ref:598 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
603
+ OPTION "11" @ref:599 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
604
+ OPTION "12" @ref:600 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
605
+ OPTION "13" @ref:601 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
606
+ OPTION "14" @ref:602 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
607
+ OPTION "15" @ref:603 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
608
+ OPTION "16" @ref:604 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
609
+ OPTION "17" @ref:605 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
610
+ OPTION "18" @ref:606 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
611
+ OPTION "19" @ref:607 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
612
+ OPTION "20" @ref:608 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
613
+ OPTION "21" @ref:609 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
614
+ OPTION "22" @ref:610 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
615
+ OPTION "23" @ref:611 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
616
+ OPTION "24" @ref:612 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
617
+ OPTION "25" @ref:613 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
618
+ OPTION "26" @ref:614 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
619
+ OPTION "27" @ref:615 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
620
+ OPTION "28" @ref:616 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
621
+ OPTION "29" @ref:617 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
622
+ OPTION "30" @ref:618 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
623
+ OPTION "31" @ref:619 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineDay
624
+ BUTTON @ref:620 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/span#a-autoid-16/span#a-autoid-16-announce
625
+ COMBOBOX @ref:621 /div.table-padding/div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar
626
+ COMBOBOX "Select year" @ref:622 /div[2]/div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineYear
627
+ OPTION @ref:623 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/select#offlineYear/option#offlineYearOptionDefault
628
+ BUTTON @ref:624 /div.contentContainer/div#feedbackForm[1]/div#pricingFeedback_offlineInput/div#offlineCalendar/span#a-autoid-17/span#a-autoid-17-announce
629
+ BUTTON "Submit Feedback" @ref:625 [type=submit] /div.contentContainer/div#feedbackForm[1]/div#feedbackFormFinalState/div#pricingFeedback_submit[2]/span#pfw_submit/input
630
+ LINK "sign in" @ref:626 /div#prodDetails/div.table-padding/div[2]/div.contentContainer/div#signUpForm[2]/a
631
+ TEXTBOX @ref:627 [type=hidden] /div#dp-container/div[18]/div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/input
632
+ BUTTON "Previous page" @ref:628 /div#dp-container/div[18]/div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/a#a-autoid-18
633
+ LINK "ref=emc bcc 2 i" @ref:629 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[5]/a
634
+ LINK "ref=emc bcc 2 i" @ref:630 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[5]/a
635
+ LINK "ref=emc bcc 2 i" @ref:631 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[5]/a
636
+ LINK "ref=emc bcc 2 i" @ref:632 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[5]/a
637
+ LINK "Visit this Brand's Amazon store" @ref:633 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[5]/a
638
+ LINK "ref=emc bcc 2 i" @ref:634 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[6]/a
639
+ LINK "ref=emc bcc 2 i" @ref:635 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[6]/a
640
+ LINK "ref=emc bcc 2 i" @ref:636 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[6]/a
641
+ LINK "ref=emc bcc 2 i" @ref:637 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[6]/a
642
+ LINK "Visit this Brand's Amazon store" @ref:638 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[6]/a
643
+ LINK "ref=emc bcc 2 i" @ref:639 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[8]/a
644
+ LINK "ref=emc bcc 2 i" @ref:640 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[8]/a
645
+ LINK "ref=emc bcc 2 i" @ref:641 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[8]/a
646
+ LINK "ref=emc bcc 2 i" @ref:642 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[8]/a
647
+ LINK "Visit this Brand's Amazon store" @ref:643 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[8]/a
648
+ LINK "ref=emc bcc 2 i" @ref:644 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[10]/a
649
+ LINK "ref=emc bcc 2 i" @ref:645 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[10]/a
650
+ LINK "ref=emc bcc 2 i" @ref:646 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[10]/a
651
+ LINK "ref=emc bcc 2 i" @ref:647 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[10]/a
652
+ LINK "Visit this Brand's Amazon store" @ref:648 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[10]/a
653
+ LINK "ref=emc bcc 2 i" @ref:649 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[12]/a
654
+ LINK "ref=emc bcc 2 i" @ref:650 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[12]/a
655
+ LINK "ref=emc bcc 2 i" @ref:651 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[12]/a
656
+ LINK "ref=emc bcc 2 i" @ref:652 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[12]/a
657
+ LINK "Visit this Brand's Amazon store" @ref:653 /div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/ol/li[12]/a
658
+ BUTTON "Next page" @ref:654 /div#dp-container/div[18]/div#aplusBrandStory_feature_div[8]/div#aplus/div#apm-brand-story-carousel[2]/a#a-autoid-19
659
+ BUTTON "javascript:void(0)" @ref:655 /div[18]/div#aplus_feature_div[11]/div#aplus/div/div[1]/a
660
+ BUTTON "Click to play video" @ref:656 /div#aplus/div/div[2]/div/div/button
661
+ BUTTON "Play" @ref:657 /div#aplus/div/div[2]/div/div/button[1]
662
+ BUTTON "Mute" @ref:658 /div#aplus/div/div[2]/div/div/button
663
+ SLIDER "Volume Level" @ref:659 /div#aplus_feature_div[11]/div#aplus/div/div[2]/div/div
664
+ SLIDER "Scrubber bar" @ref:660 /div#aplus_feature_div[11]/div#aplus/div/div[2]/div/div
665
+ BUTTON "Seek to live, currently behind live" @ref:661 /div#aplus/div/div[2]/div/div/button[2]
666
+ BUTTON "Playback Rate" @ref:662 /div#aplus/div/div[2]/div/div/button
667
+ BUTTON "Chapters" @ref:663 /div#aplus/div/div[2]/div/div/button
668
+ BUTTON "Descriptions" @ref:664 /div#aplus/div/div[2]/div/div/button
669
+ BUTTON "Captions" @ref:665 /div#aplus/div/div[2]/div/div/button
670
+ BUTTON "Audio Track" @ref:666 /div#aplus/div/div[2]/div/div/button
671
+ BUTTON "Fullscreen" @ref:667 /div#aplus/div/div[2]/div/div/button[3]
672
+ TEXTBOX @ref:668 [type=hidden] /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/input
673
+ BUTTON "Previous page" @ref:669 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
674
+ BUTTON "Next page" @ref:670 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
675
+ TAB "slide-1" @ref:671 (selected) /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[1]
676
+ TAB "slide-2" @ref:672 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[2]
677
+ TAB "slide-3" @ref:673 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[3]
678
+ TAB "slide-4" @ref:674 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[4]
679
+ TEXTBOX @ref:675 [type=hidden] /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/input
680
+ BUTTON "Previous page" @ref:676 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
681
+ BUTTON "Next page" @ref:677 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
682
+ TAB "slide-1" @ref:678 (selected) /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[1]
683
+ TAB "slide-2" @ref:679 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[2]
684
+ TAB "slide-3" @ref:680 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[3]
685
+ TEXTBOX @ref:681 [type=hidden] /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/input
686
+ BUTTON "Previous page" @ref:682 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
687
+ BUTTON "Next page" @ref:683 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
688
+ TAB "slide-1" @ref:684 (selected) /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[1]
689
+ TAB "slide-2" @ref:685 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[2]
690
+ TAB "slide-3" @ref:686 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[3]
691
+ TEXTBOX @ref:687 [type=hidden] /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/input
692
+ BUTTON "Previous page" @ref:688 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
693
+ BUTTON "Next page" @ref:689 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/div[1]/a
694
+ TAB "slide-1" @ref:690 (selected) /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[1]
695
+ TAB "slide-2" @ref:691 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[2]
696
+ TAB "slide-3" @ref:692 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[3]
697
+ TAB "slide-4" @ref:693 /div#dp-container/div[18]/div#aplus_feature_div[11]/div#aplus/ul/li[4]
698
+ LINK "WARNING" @ref:694 /div#a-page[1]/div#dp[1]/div#dp-container/div#legal-1_feature_div[26]/a
699
+ TEXTBOX @ref:695 [type=hidden] /div#a-page[1]/div#dp[1]/div#dp-container/div[30]/div#sp_detail2-similar_brands[1]/input
700
+ LINK "Sponsored" @ref:696 /div#dp[1]/div#dp-container/div[30]/div#sp_detail2-similar_brands[1]/div[1]/a
701
+ LINK "Start over" @ref:697 /div#dp[1]/div#dp-container/div[30]/div#sp_detail2-similar_brands[1]/div[1]/a
702
+ BUTTON "Previous page of related Sponsored Products" @ref:698 /div#a-page[1]/div#dp[1]/div#dp-container/div[30]/div#sp_detail2-similar_brands[1]/a#a-autoid-20
703
+ BUTTON "Feedback" @ref:699 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[1]/div/a
704
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:700 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[1]/div/a[1]
705
+ LINK "4.3 out of 5 stars 695 ratings" @ref:701 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[1]/div/a
706
+ LINK "$634.99$634.99" @ref:702 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[1]/div/a
707
+ LINK "click" @ref:703 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[1]/div/a[2]
708
+ BUTTON "Feedback" @ref:704 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a
709
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:705 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a[1]
710
+ LINK "4.4 out of 5 stars 1,915 ratings" @ref:706 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a
711
+ LINK "Amazon's Choice" @ref:707 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a
712
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:708 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a
713
+ LINK "click" @ref:709 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[2]/div/a[2]
714
+ BUTTON "Feedback" @ref:710 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[3]/div/a
715
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:711 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[3]/div/a[1]
716
+ LINK "4.4 out of 5 stars 2,261 ratings" @ref:712 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[3]/div/a
717
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:713 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[3]/div/a
718
+ LINK "click" @ref:714 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[3]/div/a[2]
719
+ BUTTON "Feedback" @ref:715 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[4]/div/a
720
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:716 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[4]/div/a[1]
721
+ LINK "4.2 out of 5 stars 225 ratings" @ref:717 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[4]/div/a
722
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:718 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[4]/div/a
723
+ LINK "click" @ref:719 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[4]/div/a[2]
724
+ BUTTON "Feedback" @ref:720 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a
725
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:721 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a[1]
726
+ LINK "4.4 out of 5 stars 3,140 ratings" @ref:722 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a
727
+ LINK "Amazon's Choice" @ref:723 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a
728
+ LINK "$499.99$499.99" @ref:724 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a
729
+ LINK "click" @ref:725 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[5]/div/a[2]
730
+ BUTTON "Feedback" @ref:726 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[6]/div/a
731
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:727 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[6]/div/a[1]
732
+ LINK "4.6 out of 5 stars 1,257 ratings" @ref:728 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[6]/div/a
733
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:729 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[6]/div/a
734
+ LINK "click" @ref:730 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[6]/div/a[2]
735
+ BUTTON "Feedback" @ref:731 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a
736
+ LINK ".atc-faceout-container.sp_atc { position: absol..." @ref:732 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a[1]
737
+ LINK "4.3 out of 5 stars 1,137 ratings" @ref:733 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a
738
+ LINK "Amazon's Choice" @ref:734 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a
739
+ LINK ".apex-savings-percent {font-weight: 300; color:..." @ref:735 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a
740
+ LINK "click" @ref:736 /div[30]/div#sp_detail2-similar_brands[1]/ol/li[7]/div/a[2]
741
+ BUTTON "Next page of related Sponsored Products" @ref:737 /div#a-page[1]/div#dp[1]/div#dp-container/div[30]/div#sp_detail2-similar_brands[1]/a#a-autoid-21
742
+ TEXTBOX @ref:738 [type=hidden] /div#a-page[1]/div#dp[1]/div#dp-container/div[33]/div/input
743
+ LINK "Start Over" @ref:739 /div#a-page[1]/div#dp[1]/div#dp-container/div[33]/div/a
744
+ BUTTON "Leave feedback on Sponsored ad" @ref:740 /div#a-page[1]/div#dp[1]/div#dp-container/div[33]/div
745
+ BUTTON "Previous page" @ref:741 /div#a-page[1]/div#dp[1]/div#dp-container/div[33]/div/a#a-autoid-22
746
+ LINK "Shop the Store on Amazon ›" @ref:742 /div#dp-container/div[33]/div/ol/li[1]/a
747
+ LINK "B0D9N5ZR43" @ref:743 /div#dp-container/div[33]/div/ol/li[1]/a
748
+ BUTTON "Play Sponsored Video" @ref:744 /div#dp-container/div[33]/div/ol/li[1]/button
749
+ BUTTON "Pause Sponsored Video" @ref:745 /div#dp-container/div[33]/div/ol/li[1]/button[1]
750
+ BUTTON "Mute Sponsored Video" @ref:746 /div#dp-container/div[33]/div/ol/li[1]/button[2]
751
+ LINK "B0D9N5ZR43" @ref:747 /div#dp-container/div[33]/div/ol/li[1]/a
752
+ LINK "B0D9N5ZR43" @ref:748 /div#dp-container/div[33]/div/ol/li[1]/a
753
+ LINK "B0D9N5ZR43" @ref:749 /div#dp-container/div[33]/div/ol/li[1]/a[1]
754
+ LINK "KTC 32 Inch 240Hz Curved Gaming Monitor, 2K 144..." @ref:750 /div#dp-container/div[33]/div/ol/li[1]/a[2]
755
+ LINK "Rated 4.4 out of 5 stars from 1,142 reviews" @ref:751 /div#dp-container/div[33]/div/ol/li[1]/a
756
+ LINK "$256.49$256.49 Typical:$269.99$269.99" @ref:752 /div#dp-container/div[33]/div/ol/li[1]/a
757
+ LINK "Shop the Store on Amazon ›" @ref:753 /div#dp-container/div[33]/div/ol/li[2]/a
758
+ LINK "B0D5QP2LXS" @ref:754 /div#dp-container/div[33]/div/ol/li[2]/a
759
+ BUTTON "Play Sponsored Video" @ref:755 /div#dp-container/div[33]/div/ol/li[2]/button
760
+ BUTTON "Pause Sponsored Video" @ref:756 /div#dp-container/div[33]/div/ol/li[2]/button[1]
761
+ BUTTON "Mute Sponsored Video" @ref:757 /div#dp-container/div[33]/div/ol/li[2]/button[2]
762
+ LINK "B0D5QP2LXS" @ref:758 /div#dp-container/div[33]/div/ol/li[2]/a
763
+ LINK "B0D5QP2LXS" @ref:759 /div#dp-container/div[33]/div/ol/li[2]/a
764
+ LINK "B0D5QP2LXS" @ref:760 /div#dp-container/div[33]/div/ol/li[2]/a[1]
765
+ LINK "KTC 32 inch 240Hz Curved Gaming Monitor 1500R 1..." @ref:761 /div#dp-container/div[33]/div/ol/li[2]/a[2]
766
+ LINK "Rated 4.4 out of 5 stars from 2,297 reviews" @ref:762 /div#dp-container/div[33]/div/ol/li[2]/a
767
+ LINK "$189.99$189.99 List:$229.99$229.99" @ref:763 /div#dp-container/div[33]/div/ol/li[2]/a
768
+ LINK "Shop the Store on Amazon ›" @ref:764 /div#dp-container/div[33]/div/ol/li[3]/a
769
+ LINK "B0B397TB6S" @ref:765 /div#dp-container/div[33]/div/ol/li[3]/a
770
+ BUTTON "Play Sponsored Video" @ref:766 /div#dp-container/div[33]/div/ol/li[3]/button
771
+ BUTTON "Pause Sponsored Video" @ref:767 /div#dp-container/div[33]/div/ol/li[3]/button[1]
772
+ BUTTON "Mute Sponsored Video" @ref:768 /div#dp-container/div[33]/div/ol/li[3]/button[2]
773
+ LINK "B0B397TB6S" @ref:769 /div#dp-container/div[33]/div/ol/li[3]/a
774
+ LINK "B0B397TB6S" @ref:770 /div#dp-container/div[33]/div/ol/li[3]/a
775
+ LINK "B0B397TB6S" @ref:771 /div#dp-container/div[33]/div/ol/li[3]/a[1]
776
+ LINK "KTC 32 inch Curved Gaming Monitor, 2K 180Hz 144..." @ref:772 /div#dp-container/div[33]/div/ol/li[3]/a[2]
777
+ LINK "Rated 4.4 out of 5 stars from 624 reviews" @ref:773 /div#dp-container/div[33]/div/ol/li[3]/a
778
+ LINK "$189.99$189.99 List:$199.99$199.99" @ref:774 /div#dp-container/div[33]/div/ol/li[3]/a
779
+ LINK "Shop the Store on Amazon ›" @ref:775 /div#dp-container/div[33]/div/ol/li[4]/a
780
+ LINK "B0CWCWL81G" @ref:776 /div#dp-container/div[33]/div/ol/li[4]/a
781
+ BUTTON "Play Sponsored Video" @ref:777 /div#dp-container/div[33]/div/ol/li[4]/button
782
+ BUTTON "Pause Sponsored Video" @ref:778 /div#dp-container/div[33]/div/ol/li[4]/button[1]
783
+ BUTTON "Mute Sponsored Video" @ref:779 /div#dp-container/div[33]/div/ol/li[4]/button[2]
784
+ LINK "B0CWCWL81G" @ref:780 /div#dp-container/div[33]/div/ol/li[4]/a
785
+ LINK "B0CWCWL81G" @ref:781 /div#dp-container/div[33]/div/ol/li[4]/a
786
+ LINK "B0CWCWL81G" @ref:782 /div#dp-container/div[33]/div/ol/li[4]/a[1]
787
+ LINK "SANSUI 27 Inch WQHD 2560 x 1440 IPS Gaming Moni..." @ref:783 /div#dp-container/div[33]/div/ol/li[4]/a[2]
788
+ LINK "Rated 4.4 out of 5 stars from 6,084 reviews" @ref:784 /div#dp-container/div[33]/div/ol/li[4]/a
789
+ LINK "Shop the Store on Amazon ›" @ref:785 /div#dp-container/div[33]/div/ol/li[5]/a
790
+ LINK "B0CGMC4MP1" @ref:786 /div#dp-container/div[33]/div/ol/li[5]/a
791
+ BUTTON "Play Sponsored Video" @ref:787 /div#dp-container/div[33]/div/ol/li[5]/button
792
+ BUTTON "Pause Sponsored Video" @ref:788 /div#dp-container/div[33]/div/ol/li[5]/button[1]
793
+ BUTTON "Mute Sponsored Video" @ref:789 /div#dp-container/div[33]/div/ol/li[5]/button[2]
794
+ LINK "B0CGMC4MP1" @ref:790 /div#dp-container/div[33]/div/ol/li[5]/a
795
+ LINK "B0CGMC4MP1" @ref:791 /div#dp-container/div[33]/div/ol/li[5]/a
796
+ LINK "B0CGMC4MP1" @ref:792 /div#dp-container/div[33]/div/ol/li[5]/a[1]
797
+ LINK "KOORUI 27" Gaming Monitor, 200Hz 1ms Fast IPS, ..." @ref:793 /div#dp-container/div[33]/div/ol/li[5]/a[2]
798
+ LINK "Rated 4.4 out of 5 stars from 10,264 reviews" @ref:794 /div#dp-container/div[33]/div/ol/li[5]/a
799
+ LINK "$159.99$159.99 List:$215.99$215.99" @ref:795 /div#dp-container/div[33]/div/ol/li[5]/a
800
+ BUTTON "Next page" @ref:796 /div#a-page[1]/div#dp[1]/div#dp-container/div[33]/div/a#a-autoid-23
801
+ LINK "81 percent of reviews have 5 stars" @ref:797 /div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/ul#histogramTable/li[1]/a
802
+ LINK "8 percent of reviews have 4 stars" @ref:798 /div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/ul#histogramTable/li[2]/a
803
+ LINK "4 percent of reviews have 3 stars" @ref:799 /div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/ul#histogramTable/li[3]/a
804
+ LINK "1 percent of reviews have 2 stars" @ref:800 /div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/ul#histogramTable/li[4]/a
805
+ LINK "6 percent of reviews have 1 stars" @ref:801 /div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/ul#histogramTable/li[5]/a
806
+ BUTTON "How customer reviews and ratings work" @ref:802 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/a
807
+ LINK "Learn more how customers reviews work on Amazon" @ref:803 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_dp_d_rating_histogram/a
808
+ TAB "Positive aspect, monitor quality, 155 mentions" @ref:804 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
809
+ BUTTON "Monitor quality(155)" @ref:805 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
810
+ TAB "Positive aspect, picture quality, 102 mentions" @ref:806 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
811
+ BUTTON "Picture quality(102)" @ref:807 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
812
+ TAB "Positive aspect, color quality, 88 mentions" @ref:808 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
813
+ BUTTON "Color quality(88)" @ref:809 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
814
+ TAB "Positive aspect, looks great, 84 mentions" @ref:810 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
815
+ BUTTON "Looks great(84)" @ref:811 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
816
+ TAB "Positive aspect, refresh rate, 35 mentions" @ref:812 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
817
+ BUTTON "Refresh rate(35)" @ref:813 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
818
+ TAB "Positive aspect, response time, 35 mentions" @ref:814 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
819
+ BUTTON "Response time(35)" @ref:815 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
820
+ TAB "Mixed aspect, value for money, 66 mentions" @ref:816 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
821
+ BUTTON "Value for money(66)" @ref:817 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
822
+ TAB "Mixed aspect, flickering, 44 mentions" @ref:818 /div#a-page[1]/div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley
823
+ BUTTON "Flickering(44)" @ref:819 /div#dp[1]/div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/button
824
+ BUTTON "Close" @ref:820 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_0[1]/button
825
+ LINK "Read more" @ref:821 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_0[1]/a
826
+ LINK "Read more" @ref:822 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_0[1]/a
827
+ LINK "Read more" @ref:823 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_0[1]/a
828
+ LINK "Read more" @ref:824 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_0[1]/a
829
+ BUTTON "Close" @ref:825 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_1[2]/button
830
+ LINK "Read more" @ref:826 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_1[2]/a
831
+ LINK "Read more" @ref:827 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_1[2]/a
832
+ LINK "Read more" @ref:828 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_1[2]/a
833
+ LINK "Read more" @ref:829 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_1[2]/a
834
+ BUTTON "Close" @ref:830 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_2[3]/button
835
+ LINK "Read more" @ref:831 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_2[3]/a
836
+ LINK "Read more" @ref:832 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_2[3]/a
837
+ LINK "Read more" @ref:833 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_2[3]/a
838
+ LINK "Read more" @ref:834 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_2[3]/a
839
+ BUTTON "Close" @ref:835 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_3[4]/button
840
+ LINK "Read more" @ref:836 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_3[4]/a
841
+ LINK "Read more" @ref:837 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_3[4]/a
842
+ LINK "Read more" @ref:838 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_3[4]/a
843
+ LINK "Read more" @ref:839 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_3[4]/a
844
+ BUTTON "Close" @ref:840 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_4[5]/button
845
+ LINK "Read more" @ref:841 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_4[5]/a
846
+ LINK "Read more" @ref:842 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_4[5]/a
847
+ LINK "Read more" @ref:843 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_4[5]/a
848
+ LINK "Read more" @ref:844 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_4[5]/a
849
+ BUTTON "Close" @ref:845 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_5[6]/button
850
+ LINK "Read more" @ref:846 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_5[6]/a
851
+ LINK "Read more" @ref:847 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_5[6]/a
852
+ LINK "Read more" @ref:848 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_5[6]/a
853
+ LINK "Read more" @ref:849 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_5[6]/a
854
+ BUTTON "Close" @ref:850 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_6[7]/button
855
+ LINK "Read more" @ref:851 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_6[7]/a
856
+ LINK "Read more" @ref:852 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_6[7]/a
857
+ LINK "Read more" @ref:853 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_6[7]/a
858
+ LINK "Read more" @ref:854 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_6[7]/a
859
+ BUTTON "Close" @ref:855 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_7[8]/button
860
+ LINK "Read more" @ref:856 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_7[8]/a
861
+ LINK "Read more" @ref:857 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_7[8]/a
862
+ LINK "Read more" @ref:858 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_7[8]/a
863
+ LINK "Read more" @ref:859 /div#dp-container/div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div#rh_controls_aspect_7[8]/a
864
+ LINK "View Image Gallery" @ref:860 /div#customerReviews/div#reviewsMedley/div[1]/div#cr_customers_image_gallery[1]/div#crViewAllImagesLink[2]/a
865
+ BUTTON "Previous Customer image" @ref:861 /div#customerReviews/div#reviewsMedley/div[1]/div#cr_customers_image_gallery[1]/div#crReviewRow[3]/button[1]
866
+ BUTTON "Next Customer image" @ref:862 /div#customerReviews/div#reviewsMedley/div[1]/div#cr_customers_image_gallery[1]/div#crReviewRow[3]/button[2]
867
+ LINK "Amazon Customer" @ref:863 /div#customerReviews/div#reviewsMedley/div[1]/div#cr_customers_image_gallery[1]/div#crReviewRow[3]/a
868
+ TEXTBOX @ref:864 [type=hidden] /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/input
869
+ LINK "See all photos" @ref:865 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/a
870
+ BUTTON "Previous slide" @ref:866 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/a#a-autoid-24
871
+ BUTTON @ref:867 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[1]/button
872
+ BUTTON @ref:868 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[2]/button
873
+ BUTTON @ref:869 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[3]/button
874
+ BUTTON @ref:870 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[4]/button
875
+ BUTTON @ref:871 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[5]/button
876
+ BUTTON @ref:872 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[6]/button
877
+ BUTTON @ref:873 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[7]/button
878
+ BUTTON @ref:874 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[8]/button
879
+ BUTTON @ref:875 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[9]/button
880
+ BUTTON @ref:876 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[10]/button
881
+ BUTTON @ref:877 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[11]/button
882
+ BUTTON @ref:878 /div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/ol/li[12]/button
883
+ BUTTON "Next slide" @ref:879 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div/div#cm_cr_carousel_images_section[1]/a#a-autoid-25
884
+ BUTTON "All photos" @ref:880 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button
885
+ BUTTON @ref:881 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button[1]
886
+ BUTTON @ref:882 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button[2]
887
+ LINK "Amazon Customer" @ref:883 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/a
888
+ BUTTON "More" @ref:884 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/a[1]
889
+ BUTTON "Hide" @ref:885 (expanded) /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/a[2]
890
+ BUTTON @ref:886 /div/div#popovers[2]/div/ul/li/button
891
+ BUTTON "Close" @ref:887 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button
892
+ BUTTON "Close" @ref:888 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button
893
+ BUTTON "Try again" @ref:889 /div#customerReviews/div#reviewsMedley/div/div#popovers[2]/div/button
894
+ LINK "Culbrelai" @ref:890 /div.card-padding/ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/a
895
+ LINK "5.0 out of 5 stars Outstanding monitor, with so..." @ref:891 /ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/h5/a
896
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:892 /div.card-padding/ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/a
897
+ BUTTON "Read more of this review" @ref:893 /div.card-padding/ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/a
898
+ LINK "Mark Review As Helpful" @ref:894 /ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/span#a-autoid-26/a#a-autoid-26-announce
899
+ LINK "Report review by Culbrelai" @ref:895 /ul#cm-cr-dp-review-list/li#REHPXV4YYIWZ1[1]/div#REHPXV4YYIWZ1-review-card/div#customer_review-REHPXV4YYIWZ1/span/a
900
+ LINK "Betti V" @ref:896 /div.card-padding/ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/a
901
+ LINK "5.0 out of 5 stars This is the one." @ref:897 /ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/h5/a
902
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:898 /div.card-padding/ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/a
903
+ BUTTON "Read more of this review" @ref:899 /div.card-padding/ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/a
904
+ LINK "Mark Review As Helpful" @ref:900 /ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/span#a-autoid-27/a#a-autoid-27-announce
905
+ LINK "Report review by Betti V" @ref:901 /ul#cm-cr-dp-review-list/li#RJL5RW1IPKJQA[2]/div#RJL5RW1IPKJQA-review-card/div#customer_review-RJL5RW1IPKJQA/span/a
906
+ LINK "Sky Dragon" @ref:902 /div.card-padding/ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/a
907
+ LINK "5.0 out of 5 stars better than being there!" @ref:903 /ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/h5/a
908
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:904 /div.card-padding/ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/a
909
+ BUTTON "Read more of this review" @ref:905 /div.card-padding/ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/a
910
+ LINK "Mark Review As Helpful" @ref:906 /ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/span#a-autoid-28/a#a-autoid-28-announce
911
+ LINK "Report review by Sky Dragon" @ref:907 /ul#cm-cr-dp-review-list/li#R1IT4ZS3EXXF5Y[3]/div#R1IT4ZS3EXXF5Y-review-card/div/span/a
912
+ LINK "See more reviews" @ref:908 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div.card-padding/div#reviews-medley-footer[4]/a
913
+ LINK "Translate all reviews to English" @ref:909 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/div[1]/span#cr-translate-775967256/a
914
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:910 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R143NGPNO5W0QI[1]/div#R143NGPNO5W0QI-review-card/div/a
915
+ BUTTON "Read more of this review" @ref:911 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R143NGPNO5W0QI[1]/div#R143NGPNO5W0QI-review-card/div/a
916
+ LINK "Report review by Oscar" @ref:912 /ul#cm-cr-global-review-list/li#R143NGPNO5W0QI[1]/div#R143NGPNO5W0QI-review-card/div/span/a
917
+ LINK "Translate review to English" @ref:913 /ul#cm-cr-global-review-list/li#R143NGPNO5W0QI[1]/div#R143NGPNO5W0QI-review-card/div/div#cr-single-translate/a
918
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:914 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R1AO0T27NG62IX[2]/div#R1AO0T27NG62IX-review-card/div/a
919
+ BUTTON "Read more of this review" @ref:915 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R1AO0T27NG62IX[2]/div#R1AO0T27NG62IX-review-card/div/a
920
+ LINK "Report review by Richard" @ref:916 /ul#cm-cr-global-review-list/li#R1AO0T27NG62IX[2]/div#R1AO0T27NG62IX-review-card/div/span/a
921
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:917 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R23JXY1M8M91UT[3]/div#R23JXY1M8M91UT-review-card/div/a
922
+ BUTTON "Read more of this review" @ref:918 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R23JXY1M8M91UT[3]/div#R23JXY1M8M91UT-review-card/div/a
923
+ LINK "Report review by Edwin G." @ref:919 /ul#cm-cr-global-review-list/li#R23JXY1M8M91UT[3]/div#R23JXY1M8M91UT-review-card/div/span/a
924
+ LINK "Translate review to English" @ref:920 /ul#cm-cr-global-review-list/li#R23JXY1M8M91UT[3]/div#R23JXY1M8M91UT-review-card/div/div#cr-single-translate/a
925
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:921 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R27KMCZYN3YGO4[4]/div#R27KMCZYN3YGO4-review-card/div/a
926
+ BUTTON "Read more of this review" @ref:922 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R27KMCZYN3YGO4[4]/div#R27KMCZYN3YGO4-review-card/div/a
927
+ LINK "Report review by Victor Torres" @ref:923 /ul#cm-cr-global-review-list/li#R27KMCZYN3YGO4[4]/div#R27KMCZYN3YGO4-review-card/div/span/a
928
+ LINK "Translate review to English" @ref:924 /ul#cm-cr-global-review-list/li#R27KMCZYN3YGO4[4]/div#R27KMCZYN3YGO4-review-card/div/div#cr-single-translate/a
929
+ LINK "Verified Purchase: Learn more how customers rev..." @ref:925 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R3RC74IWU1Q4CE[5]/div#R3RC74IWU1Q4CE-review-card/div/a
930
+ BUTTON "Read more of this review" @ref:926 /div#reviewsMedley/ul#cm-cr-global-review-list/li#R3RC74IWU1Q4CE[5]/div#R3RC74IWU1Q4CE-review-card/div/a
931
+ LINK "Report review by MJEED ALHRBI" @ref:927 /ul#cm-cr-global-review-list/li#R3RC74IWU1Q4CE[5]/div#R3RC74IWU1Q4CE-review-card/div/span/a
932
+ LINK "See more reviews" @ref:928 /div#customer-reviews_feature_div[36]/div#customerReviews/div#reviewsMedley/ul#cm-cr-global-review-list/div#cr-pagination-footer-0/a
933
+ LINK "View or edit your browsing history" @ref:929 /div#a-page[1]/div#rhf[2]/a
934
+ LINK "View or edit your browsing history" @ref:930 /div#a-page[1]/div#rhf[2]/div#rhf-error[2]/a
935
+ BUTTON "Back to top" @ref:931 /div#a-page[1]/div#navFooter[3]/button#navBackToTop
936
+ LINK "Careers" @ref:932 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li.nav_first[1]/a.nav_a
937
+ LINK "Blog" @ref:933 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li[2]/a.nav_a
938
+ LINK "About Amazon" @ref:934 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li[3]/a.nav_a
939
+ LINK "Investor Relations" @ref:935 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li[4]/a.nav_a
940
+ LINK "Amazon Devices" @ref:936 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li[5]/a.nav_a
941
+ LINK "Amazon Science" @ref:937 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[1]/ul/li.nav_last[6]/a.nav_a
942
+ LINK "Sell products on Amazon" @ref:938 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li.nav_first[1]/a.nav_a
943
+ LINK "Sell on Amazon Business" @ref:939 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[2]/a.nav_a
944
+ LINK "Sell apps on Amazon" @ref:940 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[3]/a.nav_a
945
+ LINK "Become an Affiliate" @ref:941 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[4]/a.nav_a
946
+ LINK "Advertise Your Products" @ref:942 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[5]/a.nav_a
947
+ LINK "Self-Publish with Us" @ref:943 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[6]/a.nav_a
948
+ LINK "Host an Amazon Hub" @ref:944 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li[7]/a.nav_a
949
+ LINK "See More Make Money with Us" @ref:945 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[3]/ul/li.nav_last[8]/a.nav_a
950
+ LINK "Amazon Business Card" @ref:946 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[5]/ul/li.nav_first[1]/a.nav_a
951
+ LINK "Shop with Points" @ref:947 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[5]/ul/li[2]/a.nav_a
952
+ LINK "Reload Your Balance" @ref:948 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[5]/ul/li[3]/a.nav_a
953
+ LINK "Amazon Currency Converter" @ref:949 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[5]/ul/li.nav_last[4]/a.nav_a
954
+ LINK "Amazon and COVID-19" @ref:950 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li.nav_first[1]/a.nav_a
955
+ LINK "Your Account" @ref:951 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li[2]/a.nav_a
956
+ LINK "Your Orders" @ref:952 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li[3]/a.nav_a
957
+ LINK "Shipping Rates & Policies" @ref:953 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li[4]/a.nav_a
958
+ LINK "Returns & Replacements" @ref:954 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li[5]/a.nav_a
959
+ LINK "Manage Your Content and Devices" @ref:955 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li[6]/a.nav_a
960
+ LINK "Help" @ref:956 /div.navFooterVerticalColumn[1]/div.navFooterVerticalRow/div.navFooterLinkCol[7]/ul/li.nav_last[7]/a.nav_a
961
+ LINK "Amazon US Home" @ref:957 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[3]/div.navFooterLine/a
962
+ LINK "Choose a language for shopping. Current selecti..." @ref:958 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[3]/div.navFooterLine/div#icp-touch-link-language/a
963
+ BUTTON "Expand to Change Language or Country" @ref:959 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[3]/div.navFooterLine/div#icp-touch-link-language/button.nav-arrow
964
+ LINK "$USD - U.S. Dollar" @ref:960 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[3]/div.navFooterLine/a#icp-touch-link-cop[1]
965
+ BUTTON "Choose a country/region for shopping. The curre..." @ref:961 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[3]/div.navFooterLine/a#icp-touch-link-country[2]
966
+ LINK "Amazon MusicStream millionsof songs" @ref:962 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[1]/a.nav_a
967
+ LINK "Amazon AdsReach customerswherever theyspend the..." @ref:963 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[3]/a.nav_a
968
+ LINK "6pmScore dealson fashion brands" @ref:964 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[5]/a.nav_a
969
+ LINK "AbeBooksBooks, art& collectibles" @ref:965 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[7]/a.nav_a
970
+ LINK "ACX Audiobook PublishingMade Easy" @ref:966 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[9]/a.nav_a
971
+ LINK "Sell on AmazonStart a Selling Account" @ref:967 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[11]/a.nav_a
972
+ LINK "VeeqoShipping SoftwareInventory Management" @ref:968 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[1]/li.navFooterDescItem[13]/a.nav_a
973
+ LINK "Amazon BusinessEverything ForYour Business" @ref:969 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[1]/a.nav_a
974
+ LINK "AmazonGlobalShip OrdersInternationally" @ref:970 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[3]/a.nav_a
975
+ LINK "Amazon Web ServicesScalable CloudComputing Serv..." @ref:971 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[5]/a.nav_a
976
+ LINK "AudibleListen to Books & OriginalAudio Performa..." @ref:972 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[7]/a.nav_a
977
+ LINK "Box Office MojoFind MovieBox Office Data" @ref:973 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[9]/a.nav_a
978
+ LINK "GoodreadsBook reviews& recommendations" @ref:974 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[11]/a.nav_a
979
+ LINK "IMDbMovies, TV& Celebrities" @ref:975 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[2]/li.navFooterDescItem[13]/a.nav_a
980
+ LINK "IMDbProGet Info EntertainmentProfessionals Need" @ref:976 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[1]/a.nav_a
981
+ LINK "Kindle Direct PublishingIndie Digital & Print P..." @ref:977 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[3]/a.nav_a
982
+ LINK "Prime Video DirectVideo DistributionMade Easy" @ref:978 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[5]/a.nav_a
983
+ LINK "ShopbopDesignerFashion Brands" @ref:979 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[7]/a.nav_a
984
+ LINK "Woot!Deals and Shenanigans" @ref:980 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[9]/a.nav_a
985
+ LINK "ZapposShoes &Clothing" @ref:981 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[11]/a.nav_a
986
+ LINK "RingSmart HomeSecurity Systems" @ref:982 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[3]/li.navFooterDescItem[13]/a.nav_a
987
+ LINK "eero WiFiStream 4K Videoin Every Room" @ref:983 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[4]/li.navFooterDescItem[3]/a.nav_a
988
+ LINK "BlinkSmart Securityfor Every Home" @ref:984 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[4]/li.navFooterDescItem[5]/a.nav_a
989
+ LINK "Neighbors App Real-Time Crime& Safety Alerts" @ref:985 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[4]/li.navFooterDescItem[7]/a.nav_a
990
+ LINK "Amazon Subscription BoxesTop subscription boxes..." @ref:986 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[4]/li.navFooterDescItem[9]/a.nav_a
991
+ LINK "PillPackPharmacy Simplified" @ref:987 /div#navFooter[3]/div.navFooterLine[4]/div.navFooterMoreOnAmazon/ul[4]/li.navFooterDescItem[11]/a.nav_a
992
+ LINK "Conditions of Use" @ref:988 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[5]/ul/li.nav_first[1]/a.nav_a
993
+ LINK "Privacy Notice" @ref:989 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[5]/ul/li[2]/a.nav_a
994
+ LINK "Consumer Health Data Privacy Disclosure" @ref:990 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[5]/ul/li[3]/a.nav_a
995
+ LINK "Your Ads Privacy Choices" @ref:991 /div#a-page[1]/div#navFooter[3]/div.navFooterLine[5]/ul/li[4]/a.nav_a
996
+ TEXTBOX @ref:992 [type=hidden] /div#a-page[1]/div#be[5]/form/input
997
+ TEXTBOX @ref:993 [type=hidden] /input