uhensler
uhensler
When opening a new window/tab with JavaScript an exception occurs because the JavaScript variable `targetWindow` is always `null`. ``` var targetWindow = window.open("","_blank"); ... targetWindow.location.href = ''; ``` In the...
Today we can assert that a column has **exactly** some values : ``` assertThat(table).column("name").containsValues("Hewson", "Evans", "Clayton", "Mullen"); ``` If the table contains more rows / values, the assertion fails. But...