// Suppose the ad group has no keywords.letadGroup=findAnEmptyAdGroup();// Create a keyword.adGroup.createKeyword("test");// Fetch all keywords in the ad group.letkeywords=adGroup.keywords().get();// In preview mode, this will log "false" since the keyword was not actually created.// In real execution, this will log "true".console.log("Are there keywords in the ad group? "+keywords.hasNext());