Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. visit("/foobar");
  2. var firstOption = find(".my-select option:eq(0)");
  3. fillIn(".my-select", firstOption.val());
  4. andThen(function() {
  5. assert.equal(find(".my-select").val(), 78); //assuming 78 is the first options value ...
  6. });
  7.  
  8. find('select#my-select').val('foo').trigger('change');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement