Find a select box
Default Checked Props: id
and name
propValue
(String
): Value is compared with the values of the checked props to assert a match.childrenPropValueForOption
(String
): Value is compared with thechildren
prop value of childrenoption
React elements for potentially matchingselect
React element.options
(Object
): Optional.
propToCheck
(String
): Name of prop to check against instead of the default checked props.showDebuggingInfo
(Boolean
): Iftrue
, then messages detailing the process of finding aselect
React element will be outputted to the console.
ReactWrapper
for a select
React element whose:
id
orname
prop value equalspropValue
- children include only one
option
React element whosechildren
prop value equalschildrenPropValueForOption
If options.propToCheck
is specified, then the method returns a
ReactWrapper
for a select
React element whose:
- value for the prop specified by
options.propToCheck
equalspropValue
- children include only one
option
React element whosechildren
prop value equalschildrenPropValueForOption
import React from 'react'
import Page from 'react-page-object'
const App = () => (
<div>
<select id="select-id">
<option>option 1</option>
</select>
<select name="select-name">
<option>option 1</option>
</select>
<select className="select-class">
<option>option 1</option>
</select>
</div>
)
describe('findWrapperForSelect', () => {
let page, wrapper
beforeEach(() => {
page = new Page(<App />)
})
afterEach(() => {
page.destroy()
})
it('finds wrapper - targeting id', () => {
wrapper = page.findWrapperForSelect('select-id', 'option that does not exist')
expect(wrapper.exists()).toBe(false)
wrapper = page.findWrapperForSelect('select-id', 'option 1')
expect(wrapper.exists()).toBe(true)
})
it('finds wrapper - targeting name', () => {
wrapper = page.findWrapperForSelect('select-name', 'option 1')
expect(wrapper.exists()).toBe(true)
})
it('fills in the select - targeting non-default prop', () => {
wrapper = page.findWrapperForSelect('select-class', 'option 1')
expect(wrapper.exists()).toBe(false)
wrapper = page.findWrapperForSelect('select-class', 'option 1', { propToCheck: 'className' })
expect(wrapper.exists()).toBe(true)
})
})