describe("HTML Select", function() { it('should choose 3rd option', function () { // inspect here var locator = '[name=select]'; ST.defaultContext.driver.selectByVisibleText(locator, 'Value 3'); ST.element(locator) .down('option:nth-child(3)') .get('selected') .wait(3000) .and(function () { expect(this.future.data.selected).toBe(true) }); }) });