From 168c93e74faa078830c0f5a52b6c99603503c44f Mon Sep 17 00:00:00 2001 From: Yash Raj Chhabra Date: Thu, 16 Oct 2025 18:42:19 +0530 Subject: [PATCH] fix: accessibility fix for stepper component to move the focus to the selected section --- CHANGELOG.md | 6 + package.json | 2 +- src/components/Stepper/Stepper.tsx | 63 +- src/components/Stepper/Stepper.types.ts | 11 + .../Tests/__snapshots__/Stepper.test.tsx.snap | 2232 +++++++++++++++++ 5 files changed, 2310 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dc1c580d..ffd912f83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.54.0](https://github.com/EightfoldAI/octuple/compare/v2.53.21...v2.54.0) (2025-10-16) + +### Features + +- add low/high contrast themes ([#1041](https://github.com/EightfoldAI/octuple/issues/1041)) ([61556d4](https://github.com/EightfoldAI/octuple/commits/61556d469fd07bb1d08a5b011af8b8fbaace0d25)) + ### [2.53.21](https://github.com/EightfoldAI/octuple/compare/v2.53.20...v2.53.21) (2025-10-01) ### Features diff --git a/package.json b/package.json index 76b424fa7..34f002b04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eightfold.ai/octuple", - "version": "2.53.21", + "version": "2.54.0", "license": "MIT", "description": "Eightfold Octuple Design System Component Library", "sideEffects": [ diff --git a/src/components/Stepper/Stepper.tsx b/src/components/Stepper/Stepper.tsx index 9c583f4d1..8fe0ded82 100644 --- a/src/components/Stepper/Stepper.tsx +++ b/src/components/Stepper/Stepper.tsx @@ -3,6 +3,7 @@ import React, { FC, Ref, + useCallback, useContext, useEffect, useLayoutEffect, @@ -52,6 +53,8 @@ export const Stepper: FC = React.forwardRef( locale = enUS, onChange, readonly = true, + sectionRefs, + sectionIndexOffset = 0, required = false, scrollable, scrollDownAriaLabelText: defaultScrollDownAriaLabelText, @@ -225,6 +228,45 @@ export const Stepper: FC = React.forwardRef( onChange?.(index, event); }; + const scrollToSectionAndFocus = useCallback( + (visibleIndex: number) => { + if (!sectionRefs?.current) return; + + const sectionIndex = visibleIndex + sectionIndexOffset; + const sectionElement = sectionRefs.current[sectionIndex] as HTMLElement; + + if (!sectionElement) return; + + sectionElement.scrollIntoView({ behavior: 'smooth' }); + + let scrollTimeout: ReturnType; + + const handleScroll = () => { + clearTimeout(scrollTimeout); + scrollTimeout = setTimeout(() => { + const firstInput = sectionElement.querySelector( + 'input, textarea, select, [tabindex="0"]' + ) as HTMLElement; + firstInput?.focus(); + window.removeEventListener('scroll', handleScroll); + }, 100); + }; + + window.addEventListener('scroll', handleScroll); + }, + [sectionRefs, sectionIndexOffset] + ); + + const handleStepContentKeyDown = ( + event: React.KeyboardEvent, + index: number + ): void => { + if (event.key === 'Enter' || event.key === ' ') { + event.preventDefault(); + scrollToSectionAndFocus(index); + } + }; + const handleScroll = (): void => { const steps: HTMLDivElement = stepsContainerRef.current; if (layout === 'horizontal') { @@ -608,6 +650,11 @@ export const Stepper: FC = React.forwardRef( styles.contentInner, (styles as any)[`${combinedStepSize}`], ])} + tabIndex={0} + role="button" + onKeyDown={(event) => + handleStepContentKeyDown(event, index) + } > {step.content} @@ -659,6 +706,11 @@ export const Stepper: FC = React.forwardRef( styles.contentInner, (styles as any)[`${combinedStepSize}`], ])} + tabIndex={0} + role="button" + onKeyDown={(event) => + handleStepContentKeyDown(event, index) + } > {step.content} @@ -789,6 +841,11 @@ export const Stepper: FC = React.forwardRef( styles.contentInner, (styles as any)[`${combinedStepSize}`], ])} + tabIndex={0} + role="button" + onKeyDown={(event) => + handleStepContentKeyDown(event, index) + } > {step.content} @@ -802,7 +859,7 @@ export const Stepper: FC = React.forwardRef( size === StepperSize.Small && layout === 'horizontal' && ( = React.forwardRef(
  • {layout === 'vertical' && (
    = React.forwardRef( )} {size !== StepperSize.Small && (
    ; + /** + * Offset to adjust the section index calculation. + * Useful when there are additional sections before the step sections. + * @default 0 + */ + sectionIndexOffset?: number; /** * The Stepper is read only. * @default true diff --git a/src/components/Stepper/Tests/__snapshots__/Stepper.test.tsx.snap b/src/components/Stepper/Tests/__snapshots__/Stepper.test.tsx.snap index f6494eedb..5ff2d5ea7 100644 --- a/src/components/Stepper/Tests/__snapshots__/Stepper.test.tsx.snap +++ b/src/components/Stepper/Tests/__snapshots__/Stepper.test.tsx.snap @@ -120,6 +120,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -246,9 +248,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -268,6 +274,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -489,9 +497,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -609,6 +621,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -735,9 +749,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -757,6 +775,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -978,9 +998,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -1122,6 +1146,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -1248,9 +1274,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -1270,6 +1300,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -1491,9 +1523,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -1611,6 +1647,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -1737,9 +1775,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -1759,6 +1801,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -1980,9 +2024,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -2124,6 +2172,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -2250,9 +2300,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -2272,6 +2326,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -2493,9 +2549,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -2613,6 +2673,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -2739,9 +2801,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -2761,6 +2827,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -2982,9 +3050,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -3126,6 +3198,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -3252,9 +3326,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -3274,6 +3352,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -3495,9 +3575,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -3615,6 +3699,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -3741,9 +3827,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -3763,6 +3853,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -3984,9 +4076,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -4128,6 +4224,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -4254,9 +4352,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -4276,6 +4378,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -4497,9 +4601,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -4617,6 +4725,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -4743,9 +4853,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -4765,6 +4879,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -4986,9 +5102,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -5181,6 +5301,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -5307,9 +5429,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -5329,6 +5455,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -5550,9 +5678,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -5670,6 +5802,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -5796,9 +5930,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -5818,6 +5956,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -6039,9 +6179,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -6183,6 +6327,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -6309,9 +6455,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -6331,6 +6481,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -6552,9 +6704,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -6672,6 +6828,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -6798,9 +6956,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -6820,6 +6982,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -7041,9 +7205,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -7185,6 +7353,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -7311,9 +7481,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -7333,6 +7507,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -7554,9 +7730,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -7674,6 +7854,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -7800,9 +7982,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -7822,6 +8008,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -8043,9 +8231,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -8187,6 +8379,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -8313,9 +8507,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -8335,6 +8533,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -8556,9 +8756,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -8676,6 +8880,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -8802,9 +9008,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -8824,6 +9034,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -9045,9 +9257,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -9221,6 +9437,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -9347,9 +9565,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -9369,6 +9591,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -9590,9 +9814,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -9710,6 +9938,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -9836,9 +10066,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -9858,6 +10092,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -10079,9 +10315,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -10242,6 +10482,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -10368,9 +10610,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -10390,6 +10636,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -10611,9 +10859,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -10731,6 +10983,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -10857,9 +11111,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -10879,6 +11137,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -11100,9 +11360,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -11244,6 +11508,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -11370,9 +11636,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -11392,6 +11662,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -11613,9 +11885,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -11733,6 +12009,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -11859,9 +12137,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -11881,6 +12163,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -12102,9 +12386,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -12246,6 +12534,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -12372,9 +12662,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -12394,6 +12688,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -12615,9 +12911,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -12735,6 +13035,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -12861,9 +13163,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -12883,6 +13189,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -13104,9 +13412,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -13270,6 +13582,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -13396,9 +13710,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -13418,6 +13736,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -13639,9 +13959,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -13759,6 +14083,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -13885,9 +14211,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -13907,6 +14237,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -14128,9 +14460,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -14274,6 +14610,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -14400,9 +14738,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -14422,6 +14764,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -14643,9 +14987,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -14763,6 +15111,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -14889,9 +15239,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -14911,6 +15265,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -15132,9 +15488,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -15303,6 +15663,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -15429,9 +15791,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -15451,6 +15817,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -15672,9 +16040,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -15792,6 +16164,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -15918,9 +16292,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -15940,6 +16318,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -16161,9 +16541,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -16305,6 +16689,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -16431,9 +16817,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -16453,6 +16843,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -16674,9 +17066,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -16794,6 +17190,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -16920,9 +17318,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -16942,6 +17344,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -17163,9 +17567,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -17319,6 +17727,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -17445,9 +17855,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -17467,6 +17881,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -17688,9 +18104,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -17808,6 +18228,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -17934,9 +18356,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -17956,6 +18382,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -18177,9 +18605,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -18323,6 +18755,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -18449,9 +18883,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -18471,6 +18909,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -18692,9 +19132,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -18812,6 +19256,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -18938,9 +19384,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -18960,6 +19410,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -19181,9 +19633,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -19327,6 +19783,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -19453,9 +19911,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -19475,6 +19937,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -19696,9 +20160,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -19816,6 +20284,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -19942,9 +20412,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -19964,6 +20438,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -20185,9 +20661,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -20364,6 +20844,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -20490,9 +20972,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -20512,6 +20998,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -20733,9 +21221,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -20853,6 +21345,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -20979,9 +21473,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -21001,6 +21499,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -21222,9 +21722,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -21368,6 +21872,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -21494,9 +22000,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -21516,6 +22026,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -21737,9 +22249,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -21857,6 +22373,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -21983,9 +22501,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -22005,6 +22527,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -22226,9 +22750,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -22372,6 +22900,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -22498,9 +23028,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -22520,6 +23054,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -22741,9 +23277,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -22861,6 +23401,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -22987,9 +23529,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -23009,6 +23555,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -23230,9 +23778,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -23376,6 +23928,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -23502,9 +24056,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -23524,6 +24082,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -23745,9 +24305,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -23865,6 +24429,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -23991,9 +24557,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -24013,6 +24583,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner large", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -24234,9 +24806,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -24380,6 +24956,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -24506,9 +25084,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -24528,6 +25110,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -24749,9 +25333,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -24869,6 +25457,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -24995,9 +25585,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -25017,6 +25611,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -25238,9 +25834,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -25581,6 +26181,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -25599,9 +26201,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -25621,6 +26227,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -25734,9 +26342,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -25854,6 +26466,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -25872,9 +26486,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -25894,6 +26512,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26007,9 +26627,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -26151,6 +26775,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26169,9 +26795,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -26191,6 +26821,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26304,9 +26936,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -26424,6 +27060,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26442,9 +27080,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -26464,6 +27106,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26577,9 +27221,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -26676,6 +27324,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26694,9 +27344,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -26716,6 +27370,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26784,9 +27440,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -26859,6 +27519,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26877,9 +27539,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -26899,6 +27565,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -26967,9 +27635,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -27066,6 +27738,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27084,9 +27758,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27106,6 +27784,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27174,9 +27854,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -27249,6 +27933,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27267,9 +27953,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27289,6 +27979,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27357,9 +28049,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -27456,6 +28152,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27474,9 +28172,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27496,6 +28198,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27564,9 +28268,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -27639,6 +28347,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27657,9 +28367,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27679,6 +28393,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27747,9 +28463,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -27942,6 +28662,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -27960,9 +28682,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -27982,6 +28708,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28095,9 +28823,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -28215,6 +28947,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28233,9 +28967,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -28255,6 +28993,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28368,9 +29108,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -28467,6 +29211,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28485,9 +29231,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -28507,6 +29257,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28575,9 +29327,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -28650,6 +29406,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28668,9 +29426,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -28690,6 +29452,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28758,9 +29522,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -28857,6 +29625,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28875,9 +29645,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -28897,6 +29671,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -28965,9 +29741,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -29040,6 +29820,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29058,9 +29840,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -29080,6 +29866,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29148,9 +29936,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -29247,6 +30039,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29265,9 +30059,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -29287,6 +30085,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29355,9 +30155,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -29430,6 +30234,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29448,9 +30254,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -29470,6 +30280,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29538,9 +30350,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -29714,6 +30530,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29732,9 +30550,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -29754,6 +30576,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -29867,9 +30691,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -29987,6 +30815,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30005,9 +30835,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30027,6 +30861,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30140,9 +30976,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -30258,6 +31098,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30276,9 +31118,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30298,6 +31144,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30366,9 +31214,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -30441,6 +31293,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30459,9 +31313,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30481,6 +31339,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30549,9 +31409,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -30648,6 +31512,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30666,9 +31532,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30688,6 +31558,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30756,9 +31628,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -30831,6 +31707,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30849,9 +31727,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -30871,6 +31753,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -30939,9 +31823,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -31038,6 +31926,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31056,9 +31946,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -31078,6 +31972,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31146,9 +32042,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -31221,6 +32121,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31239,9 +32141,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -31261,6 +32167,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31329,9 +32237,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -31495,6 +32407,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31513,9 +32427,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -31535,6 +32453,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31648,9 +32568,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -31768,6 +32692,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31786,9 +32712,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -31808,6 +32738,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -31921,9 +32853,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -32067,6 +33003,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32085,9 +33023,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32107,6 +33049,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32220,9 +33164,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -32340,6 +33288,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32358,9 +33308,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32380,6 +33334,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32493,9 +33449,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -32619,6 +33579,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32637,9 +33599,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32659,6 +33625,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32727,9 +33695,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -32802,6 +33774,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32820,9 +33794,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -32842,6 +33820,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -32910,9 +33890,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -33009,6 +33993,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33027,9 +34013,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33049,6 +34039,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33117,9 +34109,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -33192,6 +34188,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33210,9 +34208,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33232,6 +34234,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33300,9 +34304,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -33411,6 +34419,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33429,9 +34439,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33451,6 +34465,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33519,9 +34535,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -33594,6 +34614,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33612,9 +34634,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33634,6 +34660,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33702,9 +34730,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -33848,6 +34880,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -33866,9 +34900,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -33888,6 +34926,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34001,9 +35041,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -34121,6 +35165,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34139,9 +35185,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -34161,6 +35211,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34274,9 +35326,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -34420,6 +35476,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34438,9 +35496,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -34460,6 +35522,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34573,9 +35637,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -34693,6 +35761,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34711,9 +35781,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -34733,6 +35807,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34846,9 +35922,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -34980,6 +36060,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -34998,9 +36080,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35020,6 +36106,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35088,9 +36176,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -35163,6 +36255,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35181,9 +36275,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35203,6 +36301,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35271,9 +36371,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -35372,6 +36476,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35390,9 +36496,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35412,6 +36522,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35480,9 +36592,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -35555,6 +36671,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35573,9 +36691,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35595,6 +36717,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35663,9 +36787,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -35764,6 +36892,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35782,9 +36912,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35804,6 +36938,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35872,9 +37008,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -35947,6 +37087,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -35965,9 +37107,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -35987,6 +37133,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36055,9 +37203,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -36201,6 +37353,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36219,9 +37373,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -36241,6 +37399,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36354,9 +37514,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -36474,6 +37638,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36492,9 +37658,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -36514,6 +37684,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36627,9 +37799,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -36773,6 +37949,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36791,9 +37969,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -36813,6 +37995,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -36926,9 +38110,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -37046,6 +38234,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -37064,9 +38254,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -37086,6 +38280,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -37199,9 +38395,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -37834,6 +39034,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -37852,9 +39054,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -37874,6 +39080,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -37942,9 +39150,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -38423,6 +39635,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -38441,9 +39655,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -38463,6 +39681,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -38531,9 +39751,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -39127,6 +40351,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -39145,9 +40371,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -39167,6 +40397,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -39235,9 +40467,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -39716,6 +40952,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -39734,9 +40972,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -39756,6 +40998,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -39824,9 +41068,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -40420,6 +41668,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -40438,9 +41688,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -40460,6 +41714,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -40528,9 +41784,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -41338,6 +42598,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -41356,9 +42618,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -41378,6 +42644,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -41446,9 +42714,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -42042,6 +43314,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -42060,9 +43334,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -42082,6 +43360,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -42150,9 +43430,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -42744,6 +44028,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -42762,9 +44048,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -42784,6 +44074,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -42852,9 +44144,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -43448,6 +44744,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -43466,9 +44764,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -43488,6 +44790,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -43556,9 +44860,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -44397,6 +45705,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -44415,9 +45725,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -44437,6 +45751,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -44505,9 +45821,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -44986,6 +46306,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -45004,9 +46326,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -45026,6 +46352,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -45094,9 +46422,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -45690,6 +47022,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -45708,9 +47042,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -45730,6 +47068,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -45798,9 +47138,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -46279,6 +47623,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -46297,9 +47643,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -46319,6 +47669,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -46387,9 +47739,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -46983,6 +48339,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -47001,9 +48359,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -47023,6 +48385,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -47091,9 +48455,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -47901,6 +49269,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -47919,9 +49289,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -47941,6 +49315,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -48009,9 +49385,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -48605,6 +49985,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -48623,9 +50005,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -48645,6 +50031,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -48713,9 +50101,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -49307,6 +50699,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -49325,9 +50719,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -49347,6 +50745,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -49415,9 +50815,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -50011,6 +51415,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -50029,9 +51435,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -50051,6 +51461,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -50119,9 +51531,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -51126,6 +52542,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -51144,9 +52562,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -51166,6 +52588,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -51234,9 +52658,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -51715,6 +53143,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -51733,9 +53163,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -51755,6 +53189,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -51823,9 +53259,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -52419,6 +53859,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -52437,9 +53879,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -52459,6 +53905,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -52527,9 +53975,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -53008,6 +54460,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -53026,9 +54480,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -53048,6 +54506,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -53116,9 +54576,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -53712,6 +55176,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -53730,9 +55196,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -53752,6 +55222,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -53820,9 +55292,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -54630,6 +56106,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -54648,9 +56126,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -54670,6 +56152,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -54738,9 +56222,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -55334,6 +56822,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -55352,9 +56842,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -55374,6 +56868,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -55442,9 +56938,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -56036,6 +57536,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -56054,9 +57556,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -56076,6 +57582,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -56144,9 +57652,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -56740,6 +58252,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -56758,9 +58272,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -56780,6 +58298,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -56848,9 +58368,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -57804,6 +59328,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -57822,9 +59348,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -57844,6 +59374,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -57912,9 +59444,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -58393,6 +59929,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -58411,9 +59949,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -58433,6 +59975,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -58501,9 +60045,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -59097,6 +60645,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -59115,9 +60665,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -59137,6 +60691,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -59205,9 +60761,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -59686,6 +61246,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -59704,9 +61266,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -59726,6 +61292,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -59794,9 +61362,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -60390,6 +61962,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -60408,9 +61982,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -60430,6 +62008,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -60498,9 +62078,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -61308,6 +62892,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -61326,9 +62912,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -61348,6 +62938,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -61416,9 +63008,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -62012,6 +63608,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -62030,9 +63628,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -62052,6 +63654,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -62120,9 +63724,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -62714,6 +64322,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -62732,9 +64342,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -62754,6 +64368,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -62822,9 +64438,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -63418,6 +65038,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -63436,9 +65058,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -63458,6 +65084,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -63526,9 +65154,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -64159,6 +65791,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64177,9 +65811,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -64199,6 +65837,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64312,9 +65952,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -64432,6 +66076,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64450,9 +66096,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -64472,6 +66122,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64585,9 +66237,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -64729,6 +66385,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64747,9 +66405,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -64769,6 +66431,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -64882,9 +66546,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -65002,6 +66670,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65020,9 +66690,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -65042,6 +66716,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65155,9 +66831,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -65299,6 +66979,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65317,9 +66999,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -65339,6 +67025,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65452,9 +67140,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -65572,6 +67264,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65590,9 +67284,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -65612,6 +67310,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65725,9 +67425,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -65869,6 +67573,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -65887,9 +67593,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -65909,6 +67619,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66022,9 +67734,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -66142,6 +67858,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66160,9 +67878,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -66182,6 +67904,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66295,9 +68019,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -66439,6 +68167,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66457,9 +68187,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -66479,6 +68213,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66592,9 +68328,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -66712,6 +68452,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66730,9 +68472,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -66752,6 +68498,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -66865,9 +68613,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -67060,6 +68812,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67078,9 +68832,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67100,6 +68858,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67213,9 +68973,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -67333,6 +69097,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67351,9 +69117,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67373,6 +69143,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67486,9 +69258,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -67630,6 +69406,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67648,9 +69426,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67670,6 +69452,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67783,9 +69567,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -67903,6 +69691,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -67921,9 +69711,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -67943,6 +69737,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68056,9 +69852,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -68200,6 +70000,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68218,9 +70020,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -68240,6 +70046,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68353,9 +70161,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -68473,6 +70285,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68491,9 +70305,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -68513,6 +70331,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68626,9 +70446,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -68770,6 +70594,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68788,9 +70614,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -68810,6 +70640,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -68923,9 +70755,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -69043,6 +70879,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69061,9 +70899,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -69083,6 +70925,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69196,9 +71040,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -69372,6 +71220,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69390,9 +71240,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -69412,6 +71266,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69525,9 +71381,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -69645,6 +71505,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69663,9 +71525,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -69685,6 +71551,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69798,9 +71666,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -69961,6 +71833,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -69979,9 +71853,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70001,6 +71879,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70114,9 +71994,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -70234,6 +72118,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70252,9 +72138,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70274,6 +72164,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70387,9 +72279,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -70531,6 +72427,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70549,9 +72447,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70571,6 +72473,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70684,9 +72588,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -70804,6 +72712,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70822,9 +72732,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -70844,6 +72758,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -70957,9 +72873,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -71101,6 +73021,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71119,9 +73041,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -71141,6 +73067,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71254,9 +73182,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -71374,6 +73306,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71392,9 +73326,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -71414,6 +73352,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71527,9 +73467,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -71693,6 +73637,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71711,9 +73657,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -71733,6 +73683,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71846,9 +73798,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -71966,6 +73922,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -71984,9 +73942,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72006,6 +73968,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72119,9 +74083,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -72265,6 +74233,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72283,9 +74253,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72305,6 +74279,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72418,9 +74394,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -72538,6 +74518,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72556,9 +74538,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72578,6 +74564,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72691,9 +74679,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -72862,6 +74854,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -72880,9 +74874,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -72902,6 +74900,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73015,9 +75015,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -73135,6 +75139,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73153,9 +75159,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -73175,6 +75185,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73288,9 +75300,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -73432,6 +75448,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73450,9 +75468,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -73472,6 +75494,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73585,9 +75609,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -73705,6 +75733,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73723,9 +75753,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -73745,6 +75779,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -73858,9 +75894,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -74014,6 +76054,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74032,9 +76074,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -74054,6 +76100,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74167,9 +76215,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -74287,6 +76339,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74305,9 +76359,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -74327,6 +76385,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74440,9 +76500,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -74586,6 +76650,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74604,9 +76670,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -74626,6 +76696,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74739,9 +76811,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -74859,6 +76935,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -74877,9 +76955,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -74899,6 +76981,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75012,9 +77096,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -75158,6 +77246,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75176,9 +77266,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -75198,6 +77292,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75311,9 +77407,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -75431,6 +77531,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75449,9 +77551,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -75471,6 +77577,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75584,9 +77692,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -75763,6 +77875,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75781,9 +77895,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -75803,6 +77921,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -75916,9 +78036,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -76036,6 +78160,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76054,9 +78180,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -76076,6 +78206,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76189,9 +78321,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -76335,6 +78471,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76353,9 +78491,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -76375,6 +78517,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76488,9 +78632,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -76608,6 +78756,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76626,9 +78776,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -76648,6 +78802,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76761,9 +78917,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -76907,6 +79067,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -76925,9 +79087,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -76947,6 +79113,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77060,9 +79228,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -77180,6 +79352,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77198,9 +79372,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -77220,6 +79398,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77333,9 +79513,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -77479,6 +79663,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77497,9 +79683,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -77519,6 +79709,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77632,9 +79824,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -77752,6 +79948,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77770,9 +79968,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -77792,6 +79994,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -77905,9 +80109,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -78051,6 +80259,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -78069,9 +80279,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -78091,6 +80305,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -78204,9 +80420,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ], @@ -78324,6 +80544,8 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -78342,9 +80564,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, "parent": [Circular], @@ -78364,6 +80590,8 @@ LoadedCheerio { Node { "attribs": Object { "class": "content-inner undefined", + "role": "button", + "tabindex": "0", }, "children": Array [ Node { @@ -78477,9 +80705,13 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "role": undefined, + "tabindex": undefined, }, }, ],