import FixtureSet from '../../FixtureSet'; import TestCase from '../../TestCase'; import RangeKeyboardFixture from './RangeKeyboardFixture'; import RadioClickFixture from './RadioClickFixture'; import RadioGroupFixture from './RadioGroupFixture'; import RadioNameChangeFixture from './RadioNameChangeFixture'; import InputPlaceholderFixture from './InputPlaceholderFixture'; const React = window.React; class InputChangeEvents extends React.Component { render() { return (
  • Focus range input
  • change value via the keyboard arrow keys
  • The onKeyDown call count should be equal to the{' '} onChange call count.
  • Click on the Radio input (or label text)
  • The onChange call count should remain at 0
  • Click on the "Radio 2"
  • Click back to "Radio 1"
  • Click back to "Radio 2"
  • The onChange call count increment on each value change (at least 3+)
  • Click on the Text input
  • Click on the "Change placeholder" button
  • The onChange call count should remain at 0
  • Click the toggle button
  • The checked radio button should switch between the first and second radio button
    ); } } export default InputChangeEvents;