Comment 0 for bug 323975

Revision history for this message
Adam Groszer (agroszer) wrote :

zope.testbrowser *dropdown* list item .click() toggles the selected status of the item.
While in a real browser a dropdown item is not toggleable, just selectable.

That means the following makes hrmanager.getControl(name='form.employmentType').value == [] when then value was ['permanent'].

  >>> hrmanager.getControl(name='form.employmentType')\
  ... .getControl(value='permanent').click()

That is I think bad.