How to use selectedValues method in storybook-root

Best JavaScript code snippet using storybook-root

multi-selection.test.js

Source:multi-selection.test.js Github

copy

Full Screen

1import { fixture, assert, nextFrame } from '@open-wc/testing';2import * as MockInteractions from '@polymer/iron-test-helpers/mock-interactions.js';3import '../anypoint-selector.js';4const style = document.createElement('style');5style.innerHTML = `.selected {6 background: #ccc;7}`;8describe('AnypointSelector', () => {9 async function testFixture() {10 return await fixture(`<anypoint-selector multi>11 <div>Item 0</div>12 <div>Item 1</div>13 <div>Item 2</div>14 <div>Item 3</div>15 <div>Item 4</div>16 </anypoint-selector>`);17 }18 async function valueByIdFixture() {19 return await fixture(`<anypoint-selector multi attrforselected="id">20 <div id="item0">Item 0</div>21 <div id="item1">Item 1</div>22 <div id="item2">Item 2</div>23 <div id="item3">Item 3</div>24 <div id="item4">Item 4</div>25 </anypoint-selector>`);26 }27 describe('multi', function() {28 let s;29 beforeEach(async function() {30 s = await testFixture();31 });32 it('honors the multi attribute', function() {33 assert.isTrue(s.multi);34 });35 it('has sane defaults', function() {36 assert.deepEqual(s.selectedValues, []);37 assert.equal(s.selectedClass, 'selected');38 assert.equal(s.items.length, 5);39 });40 it('set multi-selection via selected property', function() {41 // set selectedValues42 s.selectedValues = [0, 2];43 // check selected class44 assert.isTrue(s.children[0].classList.contains('selected'));45 assert.isTrue(s.children[2].classList.contains('selected'));46 // check selectedItems47 assert.equal(s.selectedItems.length, 2);48 assert.equal(s.selectedItems[0], s.children[0]);49 assert.equal(s.selectedItems[1], s.children[2]);50 });51 it('set multi-selection via tap', function() {52 // set selectedValues53 MockInteractions.tap(s.children[0]);54 MockInteractions.tap(s.children[2]);55 // check selected class56 assert.isTrue(s.children[0].classList.contains('selected'));57 assert.isTrue(s.children[2].classList.contains('selected'));58 // check selectedItems59 assert.equal(s.selectedItems.length, 2);60 assert.equal(s.selectedItems[0], s.children[0]);61 assert.equal(s.selectedItems[1], s.children[2]);62 });63 it('fire select/deselect events when selectedValues changes', function() {64 // setup listener for select/deselect events65 const items = [s.children[0], s.children[1], s.children[2]];66 const selectEventCounters = [0, 0, 0];67 const deselectEventCounters = [0, 0, 0];68 s.addEventListener('select', function(e) {69 selectEventCounters[items.indexOf(e.detail.item)]++;70 });71 s.addEventListener('deselect', function(e) {72 deselectEventCounters[items.indexOf(e.detail.item)]++;73 });74 // programatically select values 0 and 1 (both fire select)75 s.selectedValues = [0, 1];76 // programatically select values 1 and 2 (2 fires select, 0 fires77 // deselect)78 s.selectedValues = [1, 2];79 // programatically deselect all values (1 and 2 fire deselect)80 s.selectedValues = [];81 // check events82 assert.equal(selectEventCounters[0], 1);83 assert.equal(deselectEventCounters[0], 1);84 assert.equal(selectEventCounters[1], 1);85 assert.equal(deselectEventCounters[1], 1);86 assert.equal(selectEventCounters[2], 1);87 assert.equal(deselectEventCounters[2], 1);88 });89 it('fire select/deselect events when selectedValues is modified', function() {90 // setup listener for select/deselect events91 const items = [s.children[0], s.children[1], s.children[2]];92 const selectEventCounters = [0, 0, 0];93 const deselectEventCounters = [0, 0, 0];94 s.addEventListener('select', function(e) {95 selectEventCounters[items.indexOf(e.detail.item)]++;96 });97 s.addEventListener('deselect', function(e) {98 deselectEventCounters[items.indexOf(e.detail.item)]++;99 });100 s.selectedValues = [];101 // programatically select value 0102 s.selectedValues.push(0, 1);103 s.selectedValues = [...s.selectedValues];104 // programatically deselect value 0105 s.selectedValues.shift();106 s.selectedValues = [...s.selectedValues];107 // programatically select value 2108 s.selectedValues.push(2);109 s.selectedValues = [...s.selectedValues];110 // programatically deselect value 1111 s.selectedValues.shift();112 s.selectedValues = [...s.selectedValues];113 assert.equal(selectEventCounters[0], 1);114 assert.equal(deselectEventCounters[0], 1);115 assert.equal(selectEventCounters[1], 1);116 assert.equal(deselectEventCounters[1], 1);117 assert.equal(selectEventCounters[2], 1);118 assert.equal(deselectEventCounters[2], 0);119 });120 it('fire select/deselect events when toggling items', function() {121 // setup listener for select/deselect events122 const items = [s.children[0], s.children[1], s.children[2]];123 const selectEventCounters = [0, 0, 0];124 const deselectEventCounters = [0, 0, 0];125 s.addEventListener('select', function(e) {126 selectEventCounters[items.indexOf(e.detail.item)]++;127 });128 s.addEventListener('deselect', function(e) {129 deselectEventCounters[items.indexOf(e.detail.item)]++;130 });131 // tap to select items 0 and 1 (both fire select)132 MockInteractions.tap(items[0]);133 MockInteractions.tap(items[1]);134 // programatically select values 1 and 2 (2 fires select, 0 fires deselect)135 s.selectedValues = [1, 2];136 // tap to deselect items 1 and 2 (both fire deselect)137 MockInteractions.tap(items[1]);138 MockInteractions.tap(items[2]);139 // check events140 assert.equal(selectEventCounters[0], 1);141 assert.equal(deselectEventCounters[0], 1);142 assert.equal(selectEventCounters[1], 1);143 assert.equal(deselectEventCounters[1], 1);144 assert.equal(selectEventCounters[2], 1);145 assert.equal(deselectEventCounters[2], 1);146 });147 it('toggle selected class when toggling items selection', function() {148 // setup listener for item-select/deselect events149 const item0 = s.children[0];150 const item1 = s.children[1];151 assert.isFalse(item0.classList.contains('selected'));152 assert.isFalse(item1.classList.contains('selected'));153 // tap to select item 0 (add selected class)154 MockInteractions.tap(item0);155 assert.isTrue(item0.classList.contains('selected'));156 assert.isFalse(item1.classList.contains('selected'));157 // tap to select item 1 (add selected class)158 MockInteractions.tap(item1);159 assert.isTrue(item0.classList.contains('selected'));160 assert.isTrue(item1.classList.contains('selected'));161 // tap to deselect item 1 (remove selected class)162 MockInteractions.tap(item1);163 assert.isTrue(item0.classList.contains('selected'));164 assert.isFalse(item1.classList.contains('selected'));165 // programatically select both values (1 add selected class)166 s.selectedValues = [0, 1];167 assert.isTrue(item0.classList.contains('selected'));168 assert.isTrue(item1.classList.contains('selected'));169 // programatically deselect all values (both removes selected class)170 s.selectedValues = [];171 assert.isFalse(item0.classList.contains('selected'));172 assert.isFalse(item1.classList.contains('selected'));173 });174 it('fires selected-values-changed when selection changes', function() {175 let selectedValuesChangedEventCounter = 0;176 s.addEventListener('selectedvalues-changed', function() {177 selectedValuesChangedEventCounter++;178 });179 MockInteractions.tap(s.children[0]);180 MockInteractions.tap(s.children[0]);181 MockInteractions.tap(s.children[0]);182 assert.isAbove(selectedValuesChangedEventCounter, 0);183 });184 it('updates selection when dom changes', async () => {185 const firstChild = s.querySelector(':first-child');186 const lastChild = s.querySelector(':last-child');187 MockInteractions.tap(firstChild);188 MockInteractions.tap(lastChild);189 assert.lengthOf(s.selectedItems, 2);190 s.removeChild(lastChild);191 await nextFrame();192 assert.lengthOf(s.selectedItems, 1);193 assert.equal(s.selectedItems[0], firstChild);194 });195 describe('`select()` and `selectIndex()`', function() {196 let selector;197 beforeEach(async () => {198 selector = await valueByIdFixture();199 });200 it('`select()` selects an item with the given value', function() {201 selector.select('item1');202 assert.equal(selector.selectedValues.length, 1);203 assert.equal(selector.selectedValues.indexOf('item1'), 0);204 selector.select('item3');205 assert.equal(selector.selectedValues.length, 2);206 assert.isTrue(selector.selectedValues.indexOf('item3') >= 0);207 selector.select('item2');208 assert.equal(selector.selectedValues.length, 3);209 assert.isTrue(selector.selectedValues.indexOf('item2') >= 0);210 });211 it('`selectIndex()` selects an item with the given index', function() {212 selector.selectIndex(1);213 assert.equal(selector.selectedValues.length, 1);214 assert.isTrue(selector.selectedValues.indexOf('item1') >= 0);215 assert.equal(selector.selectedItems.length, 1);216 assert.isTrue(selector.selectedItems.indexOf(selector.items[1]) >= 0);217 selector.selectIndex(3);218 assert.equal(selector.selectedValues.length, 2);219 assert.isTrue(selector.selectedValues.indexOf('item3') >= 0);220 assert.equal(selector.selectedItems.length, 2);221 assert.isTrue(selector.selectedItems.indexOf(selector.items[3]) >= 0);222 selector.selectIndex(0);223 assert.equal(selector.selectedValues.length, 3);224 assert.isTrue(selector.selectedValues.indexOf('item0') >= 0);225 assert.equal(selector.selectedItems.length, 3);226 assert.isTrue(selector.selectedItems.indexOf(selector.items[0]) >= 0);227 });228 });229 // it('toggle multi from true to false', function() {230 // // set selected231 // s.selected = [0, 2];232 // let first = s.selected[0];233 // // set mutli to false, so to make it single-selection234 // s.multi = false;235 // // selected should not be an array236 // assert.isNotArray(s.selected);237 // // selected should be the first value from the old array238 // assert.equal(s.selected, first);239 // });240 });...

Full Screen

Full Screen

reducer.ts

Source:reducer.ts Github

copy

Full Screen

1import { createSlice, PayloadAction } from '@reduxjs/toolkit';2import { cloneDeep, isString, trim } from 'lodash';3import { VariableOption, VariableWithOptions } from '../../types';4import { ALL_VARIABLE_VALUE } from '../../state/types';5import { isMulti, isQuery } from '../../guard';6import { applyStateChanges } from '../../../../core/utils/applyStateChanges';7import { containsSearchFilter } from '../../utils';8export interface ToggleOption {9 option?: VariableOption;10 forceSelect: boolean;11 clearOthers: boolean;12}13export interface OptionsPickerState {14 id: string;15 selectedValues: VariableOption[];16 queryValue: string;17 highlightIndex: number;18 options: VariableOption[];19 multi: boolean;20}21export const initialState: OptionsPickerState = {22 id: '',23 highlightIndex: -1,24 queryValue: '',25 selectedValues: [],26 options: [],27 multi: false,28};29export const OPTIONS_LIMIT = 1000;30const optionsToRecord = (options: VariableOption[]): Record<string, VariableOption> => {31 if (!Array.isArray(options)) {32 return {};33 }34 return options.reduce((all: Record<string, VariableOption>, option) => {35 if (isString(option.value)) {36 all[option.value] = option;37 }38 return all;39 }, {});40};41const updateOptions = (state: OptionsPickerState): OptionsPickerState => {42 if (!Array.isArray(state.options)) {43 state.options = [];44 return state;45 }46 const selectedOptions = optionsToRecord(state.selectedValues);47 state.selectedValues = Object.values(selectedOptions);48 state.options = state.options.map((option) => {49 if (!isString(option.value)) {50 return option;51 }52 const selected = !!selectedOptions[option.value];53 if (option.selected === selected) {54 return option;55 }56 return { ...option, selected };57 });58 state.options = applyLimit(state.options);59 return state;60};61const applyLimit = (options: VariableOption[]): VariableOption[] => {62 if (!Array.isArray(options)) {63 return [];64 }65 if (options.length <= OPTIONS_LIMIT) {66 return options;67 }68 return options.slice(0, OPTIONS_LIMIT);69};70const updateDefaultSelection = (state: OptionsPickerState): OptionsPickerState => {71 const { options, selectedValues } = state;72 if (options.length === 0 || selectedValues.length > 0) {73 return state;74 }75 if (!options[0] || options[0].value !== ALL_VARIABLE_VALUE) {76 return state;77 }78 state.selectedValues = [{ ...options[0], selected: true }];79 return state;80};81const updateAllSelection = (state: OptionsPickerState): OptionsPickerState => {82 const { selectedValues } = state;83 if (selectedValues.length > 1) {84 state.selectedValues = selectedValues.filter((option) => option.value !== ALL_VARIABLE_VALUE);85 }86 return state;87};88const optionsPickerSlice = createSlice({89 name: 'templating/optionsPicker',90 initialState,91 reducers: {92 showOptions: (state, action: PayloadAction<VariableWithOptions>): OptionsPickerState => {93 const { query, options } = action.payload;94 state.highlightIndex = -1;95 state.options = cloneDeep(options);96 state.id = action.payload.id;97 state.queryValue = '';98 state.multi = false;99 if (isMulti(action.payload)) {100 state.multi = action.payload.multi ?? false;101 }102 if (isQuery(action.payload)) {103 const { queryValue } = action.payload;104 const queryHasSearchFilter = containsSearchFilter(query);105 state.queryValue = queryHasSearchFilter && queryValue ? queryValue : '';106 }107 state.selectedValues = state.options.filter((option) => option.selected);108 return applyStateChanges(state, updateDefaultSelection, updateOptions);109 },110 hideOptions: (state, action: PayloadAction): OptionsPickerState => {111 return { ...initialState };112 },113 toggleOption: (state, action: PayloadAction<ToggleOption>): OptionsPickerState => {114 const { option, clearOthers, forceSelect } = action.payload;115 const { multi, selectedValues } = state;116 if (option) {117 const selected = !selectedValues.find((o) => o.value === option.value && o.text === option.text);118 if (option.value === ALL_VARIABLE_VALUE || !multi || clearOthers) {119 if (selected || forceSelect) {120 state.selectedValues = [{ ...option, selected: true }];121 } else {122 state.selectedValues = [];123 }124 return applyStateChanges(state, updateDefaultSelection, updateAllSelection, updateOptions);125 }126 if (forceSelect || selected) {127 state.selectedValues.push({ ...option, selected: true });128 return applyStateChanges(state, updateDefaultSelection, updateAllSelection, updateOptions);129 }130 state.selectedValues = selectedValues.filter((o) => o.value !== option.value && o.text !== option.text);131 } else {132 state.selectedValues = [];133 }134 return applyStateChanges(state, updateDefaultSelection, updateAllSelection, updateOptions);135 },136 moveOptionsHighlight: (state, action: PayloadAction<number>): OptionsPickerState => {137 let nextIndex = state.highlightIndex + action.payload;138 if (nextIndex < 0) {139 nextIndex = 0;140 } else if (nextIndex >= state.options.length) {141 nextIndex = state.options.length - 1;142 }143 return {144 ...state,145 highlightIndex: nextIndex,146 };147 },148 toggleAllOptions: (state, action: PayloadAction): OptionsPickerState => {149 if (state.selectedValues.length > 0) {150 state.selectedValues = [];151 return applyStateChanges(state, updateOptions);152 }153 state.selectedValues = state.options154 .filter((option) => option.value !== ALL_VARIABLE_VALUE)155 .map((option) => ({156 ...option,157 selected: true,158 }));159 return applyStateChanges(state, updateOptions);160 },161 updateSearchQuery: (state, action: PayloadAction<string>): OptionsPickerState => {162 state.queryValue = action.payload;163 return state;164 },165 updateOptionsAndFilter: (state, action: PayloadAction<VariableOption[]>): OptionsPickerState => {166 const searchQuery = trim((state.queryValue ?? '').toLowerCase());167 state.options = action.payload.filter((option) => {168 const optionsText = option.text ?? '';169 const text = Array.isArray(optionsText) ? optionsText.toString() : optionsText;170 return text.toLowerCase().indexOf(searchQuery) !== -1;171 });172 state.highlightIndex = 0;173 return applyStateChanges(state, updateDefaultSelection, updateOptions);174 },175 updateOptionsFromSearch: (state, action: PayloadAction<VariableOption[]>): OptionsPickerState => {176 state.options = action.payload;177 state.highlightIndex = 0;178 return applyStateChanges(state, updateDefaultSelection, updateOptions);179 },180 cleanPickerState: () => initialState,181 },182});183export const {184 toggleOption,185 showOptions,186 hideOptions,187 moveOptionsHighlight,188 toggleAllOptions,189 updateSearchQuery,190 updateOptionsAndFilter,191 updateOptionsFromSearch,192 cleanPickerState,193} = optionsPickerSlice.actions;...

Full Screen

Full Screen

initialStatePaginationOptionsPerControl.ts

Source:initialStatePaginationOptionsPerControl.ts Github

copy

Full Screen

1export const initialStatePaginationOptionsPerControl = {2 1: [3 {4 name: '1',5 offset: 0,6 limit: 100,7 select: 'selectedValues'8 },9 {10 name: '2',11 offset: 0,12 limit: 100,13 select: 'selectedValues'14 },15 {16 name: '3',17 offset: 0,18 limit: 100,19 select: 'selectedValues'20 },21 {22 name: '4',23 offset: 0,24 select: 'selectedValues'25 },26 {27 name: '5',28 offset: 0,29 limit: 100,30 select: 'selectedValues'31 }32 ],33 2: [34 {35 name: '1',36 offset: 0,37 limit: 100,38 select: 'selectedValues'39 },40 {41 name: '2',42 offset: 0,43 limit: 100,44 select: 'selectedValues'45 },46 {47 name: '3',48 offset: 0,49 limit: 100,50 select: 'selectedValues'51 },52 {53 name: '4',54 offset: 0,55 select: 'selectedValues'56 },57 {58 name: '5',59 offset: 0,60 limit: 100,61 select: 'selectedValues'62 }63 ],64 3: [65 {66 name: '1',67 offset: 0,68 limit: 100,69 select: 'selectedValues'70 },71 {72 name: '2',73 offset: 0,74 limit: 100,75 select: 'selectedValues'76 },77 {78 name: '3',79 offset: 0,80 limit: 100,81 select: 'selectedValues'82 },83 {84 name: '4',85 offset: 0,86 select: 'selectedValues'87 },88 {89 name: '5',90 offset: 0,91 limit: 100,92 select: 'selectedValues'93 }94 ],95 4: [96 {97 name: '1',98 offset: 0,99 limit: 100,100 select: 'selectedValues'101 },102 {103 name: '2',104 offset: 0,105 limit: 100,106 select: 'selectedValues'107 },108 {109 name: '3',110 offset: 0,111 limit: 100,112 select: 'selectedValues'113 },114 {115 name: '4',116 offset: 0,117 select: 'selectedValues'118 },119 {120 name: '5',121 offset: 0,122 limit: 100,123 select: 'selectedValues'124 }125 ]126};127export const initialStatePaginationOptionsPerControlWithSelection = {128 1: [129 {130 name: '1',131 offset: 0,132 limit: 100,133 value: ['1.1']134 },135 {136 name: '2',137 offset: 0,138 limit: 100,139 select: 'selectedValues'140 },141 {142 name: '3',143 offset: 0,144 limit: 100,145 select: 'selectedValues'146 },147 {148 name: '4',149 offset: 0,150 select: 'selectedValues'151 },152 {153 name: '5',154 offset: 0,155 limit: 100,156 select: 'selectedValues'157 }158 ],159 2: [160 {161 name: '1',162 offset: 0,163 limit: 100,164 value: ['1.1']165 },166 {167 name: '2',168 offset: 0,169 limit: 100,170 select: 'selectedValues'171 },172 {173 name: '3',174 offset: 0,175 limit: 100,176 select: 'selectedValues'177 },178 {179 name: '4',180 offset: 0,181 select: 'selectedValues'182 },183 {184 name: '5',185 offset: 0,186 limit: 100,187 select: 'selectedValues'188 }189 ],190 3: [191 {192 name: '1',193 offset: 0,194 limit: 100,195 value: ['1.1']196 },197 {198 name: '2',199 offset: 0,200 limit: 100,201 select: 'selectedValues'202 },203 {204 name: '3',205 offset: 0,206 limit: 100,207 select: 'selectedValues'208 },209 {210 name: '4',211 offset: 0,212 select: 'selectedValues'213 },214 {215 name: '5',216 offset: 0,217 limit: 100,218 select: 'selectedValues'219 }220 ],221 4: [222 {223 name: '1',224 offset: 0,225 limit: 100,226 value: ['1.1']227 },228 {229 name: '2',230 offset: 0,231 limit: 100,232 select: 'selectedValues'233 },234 {235 name: '3',236 offset: 0,237 limit: 100,238 select: 'selectedValues'239 },240 {241 name: '4',242 offset: 0,243 select: 'selectedValues'244 },245 {246 name: '5',247 offset: 0,248 limit: 100,249 select: 'selectedValues'250 }251 ]...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const selectedValues = await page.$eval('storybook-root', (root) => {2 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;3});4console.log('Selected values: ' + selectedValues);5const selectedValues = await page.$eval('storybook-root', (root) => {6 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;7});8console.log('Selected values: ' + selectedValues);9const selectedValues = await page.$eval('storybook-root', (root) => {10 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;11});12console.log('Selected values: ' + selectedValues);13const selectedValues = await page.$eval('storybook-root', (root) => {14 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;15});16console.log('Selected values: ' + selectedValues);17const selectedValues = await page.$eval('storybook-root', (root) => {18 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;19});20console.log('Selected values: ' + selectedValues);21const selectedValues = await page.$eval('storybook-root', (root) => {22 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;23});24console.log('Selected values: ' + selectedValues);25const selectedValues = await page.$eval('storybook-root', (root) => {26 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;27});28console.log('Selected values: ' + selectedValues);29const selectedValues = await page.$eval('storybook-root', (root) => {30 return root.shadowRoot.querySelector('storybook-aem-core-components-examples-components-list').selectedValues;31});32console.log('Selected values: ' + selectedValues);

Full Screen

Using AI Code Generation

copy

Full Screen

1import { selectedValues } from 'storybook-root'2const selectedValues = selectedValues('myArray', [1, 2, 3])3import { selectedValues } from 'storybook-root'4const selectedValues = selectedValues('myArray', [1, 2, 3])5import { selectedValues } from 'storybook-root'6const selectedValues = selectedValues('myArray', [1, 2, 3])7import { selectedValues } from 'storybook-root'8const selectedValues = selectedValues('myArray', [1, 2, 3])9import { selectedValues } from 'storybook-root'10const selectedValues = selectedValues('myArray', [1, 2, 3])11import { selectedValues } from 'storybook-root'12const selectedValues = selectedValues('myArray', [1, 2, 3])13import { selectedValues } from 'storybook-root'14const selectedValues = selectedValues('myArray', [1, 2, 3])15import { selectedValues } from 'storybook-root'16const selectedValues = selectedValues('myArray', [1, 2, 3])17import { selected

Full Screen

Using AI Code Generation

copy

Full Screen

1console.log("Selected values are: ", storybookRoot.selectedValues());2console.log("Selected nodes are: ", storybookRoot.selectedNodes());3console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));4console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));5console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));6console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));7console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));8console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));9console.log("Selected nodes are: ", storybookRoot.setSelection(["node_4", "node_5"]));

Full Screen

Using AI Code Generation

copy

Full Screen

1import React, { Component } from "react";2import { storiesOf } from "@storybook/react";3import { withKnobs, select } from "@storybook/addon-knobs";4import Select from "./Select";5const options = {6};7storiesOf("Select", module)8 .addDecorator(withKnobs)9 .add("Select", () => {10 const value = select("Options", options, "1");11 return <Select value={value} />;12 });13import React from "react";14const Select = ({ value }) => {15 return (16 <select value={value}>17 );18};19export default Select;20import { selectedValues } from "storybook-root";21const value = selectedValues().get("Options");22console.log(value);

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run storybook-root automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful