Unable to fill checkboxes from table

Per #158 (comment 2803319242):

In chrome-mink-driver#158: Throw exception if setV... (!192 - merged) the driver throws an exception if a checkbox is populated with a non-boolean value.

This caused a problem where:

    And I fill in the following:
      | Published                         | 1                  |
      | Name                              | Behat meet-up test |

Then I have an exception:

Boolean values must be used for a checkbox element. (Behat\Mink\Exception\DriverException)

I think inside of a table in Gherkin, it is not possible to pass a boolean, so after this change, I cannot fill checkboxes with a table anymore.

Edited by Chris Burgess