{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); "},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":601,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":602,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":603,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":604,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":605,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":606,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":607,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":608,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":609,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":610,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":16,"string":"16"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":611,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":612,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":613,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":614,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":615,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":616,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":617,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":618,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":619,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":620,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":621,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":622,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":623,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of red
"},"instruction":{"kind":"string","value":"Select all the shades of red "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":624,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of blue
"},"instruction":{"kind":"string","value":"Select all the shades of blue "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":625,"cells":{"history_episodes":{"kind":"string","value":" Select all the shades of green
"},"instruction":{"kind":"string","value":"Select all the shades of green "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":626,"cells":{"history_episodes":{"kind":"string","value":" Click on the link \"massa.\".
, "},"instruction":{"kind":"string","value":"Click on the link \"massa.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":627,"cells":{"history_episodes":{"kind":"string","value":" Select Sweden from the list
, "},"instruction":{"kind":"string","value":"Select Sweden from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":628,"cells":{"history_episodes":{"kind":"string","value":" Select Florrie from the list
, "},"instruction":{"kind":"string","value":"Select Florrie from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":629,"cells":{"history_episodes":{"kind":"string","value":" Select Livia from the list
, "},"instruction":{"kind":"string","value":"Select Livia from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":630,"cells":{"history_episodes":{"kind":"string","value":" Select Merrily from the list
, "},"instruction":{"kind":"string","value":"Select Merrily from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":631,"cells":{"history_episodes":{"kind":"string","value":" Select Hong Kong from the list
, "},"instruction":{"kind":"string","value":"Select Hong Kong from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":632,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":633,"cells":{"history_episodes":{"kind":"string","value":" Select Delila from the list
, "},"instruction":{"kind":"string","value":"Select Delila from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":634,"cells":{"history_episodes":{"kind":"string","value":" Select Brett from the list
, "},"instruction":{"kind":"string","value":"Select Brett from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":635,"cells":{"history_episodes":{"kind":"string","value":" Select Sri Lanka from the list
, "},"instruction":{"kind":"string","value":"Select Sri Lanka from the list"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":636,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Fran\" and ends with \"nce\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Fran\" and ends with \"nce\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"france"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":637,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Phil\" and ends with \"es\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Phil\" and ends with \"es\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"philippines"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":638,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter an item that starts with \"Syri\" and ends with \"ic\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Syri\" and ends with \"ic\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"syrian arab republic"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":639,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":640,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter an item that starts with \"Guy\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Guy\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"guyana"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":641,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter an item that starts with \"Ira\" and ends with \"raq\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Ira\" and ends with \"raq\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"iraq"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":642,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter an item that starts with \"Swa\" and ends with \"and\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Swa\" and ends with \"and\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"swaziland"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":643,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":644,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Enter an item that starts with \"Co\" and ends with \"ca\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Co\" and ends with \"ca\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"costa rica"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":645,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter an item that starts with \"Th\" and ends with \"nd\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Th\" and ends with \"nd\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"thailand"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":646,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Pa\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Pa\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"pancake"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":647,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Enter an item that starts with \"Mal\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Mal\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"malaysia"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":648,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":649,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter an item that starts with \"May\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"May\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"mayotte"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":650,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Am\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Am\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"american samoa"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":651,"cells":{"history_episodes":{"kind":"string","value":" click submit
"},"instruction":{"kind":"string","value":"click submit"},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":652,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Enter an item that starts with \"Ser\" and ends with \"ia\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Ser\" and ends with \"ia\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"serbia"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":653,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Enter an item that starts with \"Roma\" and ends with \"ania\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Roma\" and ends with \"ania\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"romania"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":654,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter an item that starts with \"New\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"New\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"new caledonia"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":655,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter an item that starts with \"Co\" and ends with \"bia\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Co\" and ends with \"bia\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"colombia"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":656,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Enter an item that starts with \"Vene\" and ends with \"uela\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Vene\" and ends with \"uela\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"venezuela"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":657,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Thai\" and ends with \"and\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Thai\" and ends with \"and\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"thailand"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":658,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Enter an item that starts with \"Uk\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Uk\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"ukraine"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":659,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Ang\" and ends with \"la\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Ang\" and ends with \"la\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"angola"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":660,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter an item that starts with \"Guad\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Guad\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"guadeloupe"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":661,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Enter an item that starts with \"Uni\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Uni\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"university"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":662,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter an item that starts with \"Ho\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Ho\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"honduras"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":663,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Enter an item that starts with \"Kor\" and ends with \"rea\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Kor\" and ends with \"rea\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"korea"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":664,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Enter an item that starts with \"Tr\" and ends with \"bago\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Tr\" and ends with \"bago\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"trinidad and tobago"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":665,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Enter an item that starts with \"Pak\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Pak\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"pakistan"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":666,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Enter an item that starts with \"Maur\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Maur\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"mauritius"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":667,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} Enter an item that starts with \"Le\".
, "},"instruction":{"kind":"string","value":"Enter an item that starts with \"Le\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"lebanon"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":668,"cells":{"history_episodes":{"kind":"string","value":" Look for the email from Edin and forward to Flora.
, "},"instruction":{"kind":"string","value":"Look for the email from Edin and forward to Flora. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":35,"string":"35"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":669,"cells":{"history_episodes":{"kind":"string","value":"{click,35,} Look for the email from Edin and forward to Flora.
, "},"instruction":{"kind":"string","value":"Look for the email from Edin and forward to Flora. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":35,"string":"35"},"keydown_text":{"kind":"string","value":"flora"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":670,"cells":{"history_episodes":{"kind":"string","value":" Clara wants the email you got from Jen.
, "},"instruction":{"kind":"string","value":"Clara wants the email you got from Jen. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":671,"cells":{"history_episodes":{"kind":"string","value":"{click,30,} Clara wants the email you got from Jen.
, "},"instruction":{"kind":"string","value":"Clara wants the email you got from Jen. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"string","value":"clara"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":672,"cells":{"history_episodes":{"kind":"string","value":" Look for the email from Abby and forward to Jerrine.
, "},"instruction":{"kind":"string","value":"Look for the email from Abby and forward to Jerrine. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":673,"cells":{"history_episodes":{"kind":"string","value":"{click,13,} Look for the email from Abby and forward to Jerrine.
, "},"instruction":{"kind":"string","value":"Look for the email from Abby and forward to Jerrine. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"jerrine"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":674,"cells":{"history_episodes":{"kind":"string","value":" Locate the email by Tommi. Forward that email to Paulina.
, "},"instruction":{"kind":"string","value":"Locate the email by Tommi. Forward that email to Paulina. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":675,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Locate the email by Tommi. Forward that email to Paulina.
, "},"instruction":{"kind":"string","value":"Locate the email by Tommi. Forward that email to Paulina. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"paulina"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":676,"cells":{"history_episodes":{"kind":"string","value":" Go to the message from Sybille and send it to Aubrey.
, "},"instruction":{"kind":"string","value":"Go to the message from Sybille and send it to Aubrey. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":677,"cells":{"history_episodes":{"kind":"string","value":"{click,13,} Go to the message from Sybille and send it to Aubrey.
, "},"instruction":{"kind":"string","value":"Go to the message from Sybille and send it to Aubrey. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"aubrey"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":678,"cells":{"history_episodes":{"kind":"string","value":" Forward to Vivien the email from Elise.
, "},"instruction":{"kind":"string","value":"Forward to Vivien the email from Elise. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":679,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Forward to Vivien the email from Elise.
, "},"instruction":{"kind":"string","value":"Forward to Vivien the email from Elise. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"vivien"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":680,"cells":{"history_episodes":{"kind":"string","value":" I want the mail by Carolynn to be sent to Daphne.
, "},"instruction":{"kind":"string","value":"I want the mail by Carolynn to be sent to Daphne. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":40,"string":"40"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":681,"cells":{"history_episodes":{"kind":"string","value":"{click,40,} I want the mail by Carolynn to be sent to Daphne.
, "},"instruction":{"kind":"string","value":"I want the mail by Carolynn to be sent to Daphne. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":40,"string":"40"},"keydown_text":{"kind":"string","value":"daphne"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":682,"cells":{"history_episodes":{"kind":"string","value":" Please forward the message from Mada to Carolina.
, "},"instruction":{"kind":"string","value":"Please forward the message from Mada to Carolina. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":35,"string":"35"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":683,"cells":{"history_episodes":{"kind":"string","value":"{click,35,} Please forward the message from Mada to Carolina.
, "},"instruction":{"kind":"string","value":"Please forward the message from Mada to Carolina. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":35,"string":"35"},"keydown_text":{"kind":"string","value":"carolina"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":684,"cells":{"history_episodes":{"kind":"string","value":" Navigate to the message from Merlina and send it to Kettie.
, "},"instruction":{"kind":"string","value":"Navigate to the message from Merlina and send it to Kettie. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":685,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Navigate to the message from Merlina and send it to Kettie.
, "},"instruction":{"kind":"string","value":"Navigate to the message from Merlina and send it to Kettie. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"kettie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":686,"cells":{"history_episodes":{"kind":"string","value":" Ethelin is waiting for the email by Catie.
, "},"instruction":{"kind":"string","value":"Ethelin is waiting for the email by Catie. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":45,"string":"45"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":687,"cells":{"history_episodes":{"kind":"string","value":"{click,45,} Ethelin is waiting for the email by Catie.
, "},"instruction":{"kind":"string","value":"Ethelin is waiting for the email by Catie. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":45,"string":"45"},"keydown_text":{"kind":"string","value":"ethelin"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":688,"cells":{"history_episodes":{"kind":"string","value":" Look for the email from Alvina and forward to Susi.
, "},"instruction":{"kind":"string","value":"Look for the email from Alvina and forward to Susi. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":689,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} Look for the email from Alvina and forward to Susi.
, "},"instruction":{"kind":"string","value":"Look for the email from Alvina and forward to Susi. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"susi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":690,"cells":{"history_episodes":{"kind":"string","value":" Forward the email from Leola to Therese.
, "},"instruction":{"kind":"string","value":"Forward the email from Leola to Therese. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":691,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Forward the email from Leola to Therese.
, "},"instruction":{"kind":"string","value":"Forward the email from Leola to Therese. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"string","value":"therese"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":692,"cells":{"history_episodes":{"kind":"string","value":" Look for the email from Mozelle and forward to Michaeline.
, "},"instruction":{"kind":"string","value":"Look for the email from Mozelle and forward to Michaeline. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":693,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Look for the email from Mozelle and forward to Michaeline.
, "},"instruction":{"kind":"string","value":"Look for the email from Mozelle and forward to Michaeline. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"michaeline"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":694,"cells":{"history_episodes":{"kind":"string","value":" Send to Aeriel the email you got from Kipp.
, "},"instruction":{"kind":"string","value":"Send to Aeriel the email you got from Kipp. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":695,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Send to Aeriel the email you got from Kipp.
, "},"instruction":{"kind":"string","value":"Send to Aeriel the email you got from Kipp. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"aeriel"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":696,"cells":{"history_episodes":{"kind":"string","value":" Amii wants his or her message to be sent to Odille.
, "},"instruction":{"kind":"string","value":"Amii wants his or her message to be sent to Odille. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":20,"string":"20"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":697,"cells":{"history_episodes":{"kind":"string","value":"{click,20,} Amii wants his or her message to be sent to Odille.
, "},"instruction":{"kind":"string","value":"Amii wants his or her message to be sent to Odille. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":20,"string":"20"},"keydown_text":{"kind":"string","value":"odille"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":698,"cells":{"history_episodes":{"kind":"string","value":" Look for the email from Maris and forward to Kissee.
, "},"instruction":{"kind":"string","value":"Look for the email from Maris and forward to Kissee. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":699,"cells":{"history_episodes":{"kind":"string","value":"{click,14,} Look for the email from Maris and forward to Kissee.
, "},"instruction":{"kind":"string","value":"Look for the email from Maris and forward to Kissee. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":14,"string":"14"},"keydown_text":{"kind":"string","value":"kissee"},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":6,"numItemsPerPage":100,"numTotalItems":40186,"offset":600,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1NjI4MzczMCwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU2Mjg3MzMwLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.tT8Np9yn1e6howpPNHgFuEWBT-48DWZnZbsLTBbMSFyYVduMTfc3-Wp96rZ9bM8DkvXm3lNTdTUveM27Jb3bDg","displayUrls":true},"discussionsStats":{"closed":0,"open":1,"total":1},"fullWidth":true,"hasGatedAccess":true,"hasFullAccess":true,"isEmbedded":false,"savedQueries":{"community":[],"user":[]}}">
history_episodes
stringlengths
196
8.32k
instruction
stringlengths
9
111
actions
stringclasses
2 values
refs
int64
1
473
keydown_text
stringlengths
1
72
subtask_completion
stringclasses
2 values
Select all the shades of green <body ref="15"><div id="wrap" ref="7"><div id="area" ref="8"><span ref="5"></span><span classes="selected" ref="13"></span><span classes="selected" ref="10"></span><span ref="2"></span><span ref="11"></span><span ref="6"></span><span ref="16"></span><span ref="12"></span><span classes="selected" ref="1"></span><span ref="4"></span><span ref="3"></span><span ref="14"></span><button id="submit" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
Select all the shades of green
click
9
null
stop
Select all the shades of red <body ref="13"><div id="wrap" ref="12"><div id="area" ref="3"><span classes="selected" ref="5"></span><span ref="16"></span><span ref="15"></span><span ref="8"></span><span classes="selected" ref="6"></span><span classes="selected" ref="1"></span><span ref="11"></span><span classes="selected" ref="4"></span><span ref="7"></span><span ref="9"></span><span classes="selected" ref="2"></span><span ref="10"></span><button id="submit" classes="secondary-action" ref="14" text="submit"></button></div></div></body>
Select all the shades of red
click
14
null
stop
Select all the shades of green <body ref="5"><div id="wrap" ref="4"><div id="area" ref="10"><span classes="selected" ref="9"></span><span ref="13"></span><span ref="14"></span><span classes="selected" ref="1"></span><span ref="15"></span><span ref="3"></span><span classes="selected" ref="6"></span><span ref="7"></span><span classes="selected" ref="16"></span><span classes="selected" ref="2"></span><span ref="12"></span><span ref="11"></span><button id="submit" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
Select all the shades of green
click
8
null
stop
Select all the shades of red <body ref="7"><div id="wrap" ref="4"><div id="area" ref="5"><span ref="9"></span><span ref="10"></span><span ref="15"></span><span ref="12"></span><span classes="selected" ref="3"></span><span ref="1"></span><span ref="2"></span><span classes="selected" ref="13"></span><span ref="14"></span><span ref="11"></span><span classes="selected" ref="8"></span><span ref="16"></span><button id="submit" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
Select all the shades of red
click
6
null
stop
Select all the shades of blue <body ref="1"><div id="wrap" ref="14"><div id="area" ref="15"><span classes="selected" ref="10"></span><span ref="8"></span><span ref="5"></span><span classes="selected" ref="9"></span><span ref="11"></span><span classes="selected" ref="13"></span><span ref="12"></span><span ref="7"></span><span ref="2"></span><span classes="selected" ref="3"></span><span classes="selected" ref="4"></span><span ref="16"></span><button id="submit" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
Select all the shades of blue
click
6
null
stop
Select all the shades of green <body ref="15"><div id="wrap" ref="1"><div id="area" ref="14"><span ref="16"></span><span classes="selected" ref="9"></span><span classes="selected" ref="8"></span><span ref="2"></span><span ref="13"></span><span classes="selected" ref="4"></span><span ref="5"></span><span ref="7"></span><span ref="12"></span><span classes="selected" ref="10"></span><span ref="11"></span><span classes="selected" ref="6"></span><button id="submit" classes="secondary-action" ref="3" text="submit"></button></div></div></body>
Select all the shades of green
click
3
null
stop
Select all the shades of green <body ref="12"><div id="wrap" ref="1"><div id="area" ref="3"><span ref="13"></span><span ref="4"></span><span classes="selected" ref="2"></span><span ref="8"></span><span ref="10"></span><span ref="5"></span><span ref="6"></span><span ref="14"></span><span classes="selected" ref="7"></span><span classes="selected" ref="11"></span><span ref="15"></span><span ref="16"></span><button id="submit" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
Select all the shades of green
click
9
null
stop
Select all the shades of blue <body ref="3"><div id="wrap" ref="2"><div id="area" ref="1"><span ref="13"></span><span classes="selected" ref="8"></span><span ref="6"></span><span classes="selected" ref="12"></span><span ref="14"></span><span ref="10"></span><span ref="16"></span><span ref="5"></span><span ref="15"></span><span classes="selected" ref="9"></span><span ref="4"></span><span classes="selected" ref="7"></span><button id="submit" classes="secondary-action" ref="11" text="submit"></button></div></div></body>
Select all the shades of blue
click
11
null
stop
Select all the shades of blue <body ref="2"><div id="wrap" ref="16"><div id="area" ref="1"><span classes="selected" ref="14"></span><span ref="9"></span><span ref="7"></span><span classes="selected" ref="6"></span><span ref="5"></span><span classes="selected" ref="15"></span><span ref="12"></span><span ref="13"></span><span ref="10"></span><span ref="3"></span><span ref="11"></span><span classes="selected" ref="8"></span><button id="submit" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
Select all the shades of blue
click
4
null
stop
Select all the shades of blue <body ref="7"><div id="wrap" ref="4"><div id="area" ref="13"><span ref="12"></span><span classes="selected" ref="2"></span><span ref="1"></span><span ref="6"></span><span classes="selected" ref="9"></span><span ref="16"></span><span classes="selected" ref="14"></span><span ref="5"></span><span ref="3"></span><span classes="selected" ref="15"></span><span ref="10"></span><span ref="11"></span><button id="submit" classes="secondary-action" ref="8" text="submit"></button></div></div></body>
Select all the shades of blue
click
8
null
stop
Select all the shades of red <body ref="15"><div id="wrap" ref="13"><div id="area" ref="12"><span ref="3"></span><span classes="selected" ref="4"></span><span classes="selected" ref="6"></span><span ref="9"></span><span classes="selected" ref="8"></span><span ref="10"></span><span ref="1"></span><span ref="11"></span><span ref="2"></span><span classes="selected" ref="7"></span><span ref="14"></span><span classes="selected" ref="5"></span><button id="submit" classes="secondary-action" ref="16" text="submit"></button></div></div></body>
Select all the shades of red
click
16
null
stop
Select all the shades of green <body ref="12"><div id="wrap" ref="7"><div id="area" ref="3"><span classes="selected" ref="1"></span><span ref="13"></span><span classes="selected" ref="8"></span><span classes="selected" ref="10"></span><span ref="2"></span><span ref="16"></span><span ref="9"></span><span ref="5"></span><span ref="4"></span><span ref="11"></span><span ref="14"></span><span ref="15"></span><button id="submit" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
Select all the shades of green
click
6
null
stop
Select all the shades of blue <body ref="12"><div id="wrap" ref="9"><div id="area" ref="3"><span classes="selected" ref="1"></span><span ref="14"></span><span ref="4"></span><span classes="selected" ref="8"></span><span classes="selected" ref="10"></span><span ref="15"></span><span classes="selected" ref="16"></span><span ref="11"></span><span ref="13"></span><span ref="6"></span><span ref="5"></span><span classes="selected" ref="2"></span><button id="submit" classes="secondary-action" ref="7" text="submit"></button></div></div></body>
Select all the shades of blue
click
7
null
stop
Select all the shades of red <body ref="11"><div id="wrap" ref="14"><div id="area" ref="16"><span ref="8"></span><span classes="selected" ref="5"></span><span ref="1"></span><span ref="9"></span><span ref="3"></span><span ref="2"></span><span ref="10"></span><span ref="15"></span><span ref="13"></span><span classes="selected" ref="6"></span><span ref="12"></span><span classes="selected" ref="7"></span><button id="submit" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
Select all the shades of red
click
4
null
stop
Select all the shades of red <body ref="7"><div id="wrap" ref="10"><div id="area" ref="2"><span ref="5"></span><span classes="selected" ref="3"></span><span ref="14"></span><span ref="6"></span><span ref="8"></span><span classes="selected" ref="4"></span><span ref="9"></span><span ref="11"></span><span ref="16"></span><span classes="selected" ref="15"></span><span classes="selected" ref="12"></span><span classes="selected" ref="13"></span><button id="submit" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
Select all the shades of red
click
1
null
stop
Select all the shades of green <body ref="12"><div id="wrap" ref="13"><div id="area" ref="7"><span ref="3"></span><span ref="11"></span><span classes="selected" ref="5"></span><span ref="1"></span><span ref="2"></span><span ref="6"></span><span classes="selected" ref="10"></span><span classes="selected" ref="16"></span><span classes="selected" ref="8"></span><span classes="selected" ref="9"></span><span ref="4"></span><span ref="14"></span><button id="submit" classes="secondary-action" ref="15" text="submit"></button></div></div></body>
Select all the shades of green
click
15
null
stop
Select all the shades of red <body ref="15"><div id="wrap" ref="9"><div id="area" ref="8"><span ref="13"></span><span ref="10"></span><span classes="selected" ref="12"></span><span ref="3"></span><span ref="7"></span><span ref="5"></span><span ref="4"></span><span ref="14"></span><span classes="selected" ref="16"></span><span ref="1"></span><span classes="selected" ref="2"></span><span ref="11"></span><button id="submit" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
Select all the shades of red
click
6
null
stop
Select all the shades of red <body ref="1"><div id="wrap" ref="9"><div id="area" ref="12"><span ref="7"></span><span ref="16"></span><span ref="13"></span><span ref="10"></span><span classes="selected" ref="8"></span><span ref="6"></span><span classes="selected" ref="14"></span><span ref="15"></span><span ref="2"></span><span ref="3"></span><span ref="4"></span><span classes="selected" ref="11"></span><button id="submit" classes="secondary-action" ref="5" text="submit"></button></div></div></body>
Select all the shades of red
click
5
null
stop
Select all the shades of blue <body ref="8"><div id="wrap" ref="6"><div id="area" ref="14"><span classes="selected" ref="16"></span><span ref="5"></span><span ref="9"></span><span ref="15"></span><span ref="10"></span><span ref="3"></span><span classes="selected" ref="4"></span><span ref="7"></span><span ref="2"></span><span classes="selected" ref="13"></span><span ref="1"></span><span ref="11"></span><button id="submit" classes="secondary-action" ref="12" text="submit"></button></div></div></body>
Select all the shades of blue
click
12
null
stop
Select all the shades of blue <body ref="4"><div id="wrap" ref="10"><div id="area" ref="2"><span ref="7"></span><span ref="13"></span><span ref="11"></span><span ref="9"></span><span ref="5"></span><span ref="15"></span><span classes="selected" ref="16"></span><span classes="selected" ref="14"></span><span classes="selected" ref="12"></span><span ref="8"></span><span ref="1"></span><span ref="3"></span><button id="submit" classes="secondary-action" ref="6" text="submit"></button></div></div></body>
Select all the shades of blue
click
6
null
stop
Select all the shades of blue <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><span ref="13"></span><span classes="selected" ref="5"></span><span ref="8"></span><span classes="selected" ref="10"></span><span classes="selected" ref="14"></span><span ref="16"></span><span ref="11"></span><span ref="6"></span><span ref="12"></span><span classes="selected" ref="7"></span><span classes="selected" ref="15"></span><span classes="selected" ref="3"></span><button id="submit" classes="secondary-action" ref="9" text="submit"></button></div></div></body>
Select all the shades of blue
click
9
null
stop
Select all the shades of blue <body ref="2"><div id="wrap" ref="6"><div id="area" ref="10"><span classes="selected" ref="4"></span><span ref="7"></span><span classes="selected" ref="16"></span><span ref="8"></span><span ref="11"></span><span ref="13"></span><span classes="selected" ref="14"></span><span ref="5"></span><span classes="selected" ref="15"></span><span ref="1"></span><span ref="9"></span><span ref="12"></span><button id="submit" classes="secondary-action" ref="3" text="submit"></button></div></div></body>
Select all the shades of blue
click
3
null
stop
Select all the shades of green <body ref="16"><div id="wrap" ref="11"><div id="area" ref="5"><span classes="selected" ref="10"></span><span ref="1"></span><span ref="15"></span><span ref="3"></span><span classes="selected" ref="9"></span><span ref="7"></span><span classes="selected" ref="8"></span><span ref="6"></span><span ref="13"></span><span ref="2"></span><span classes="selected" ref="4"></span><span ref="14"></span><button id="submit" classes="secondary-action" ref="12" text="submit"></button></div></div></body>
Select all the shades of green
click
12
null
stop
Select all the shades of red <body ref="5"><div id="wrap" ref="11"><div id="area" ref="7"><span ref="12"></span><span classes="selected" ref="14"></span><span ref="6"></span><span ref="4"></span><span classes="selected" ref="10"></span><span ref="2"></span><span ref="15"></span><span ref="16"></span><span ref="3"></span><span classes="selected" ref="9"></span><span classes="selected" ref="8"></span><span ref="13"></span><button id="submit" classes="secondary-action" ref="1" text="submit"></button></div></div></body>
Select all the shades of red
click
1
null
stop
Select all the shades of blue <body ref="13"><div id="wrap" ref="6"><div id="area" ref="3"><span ref="1"></span><span ref="4"></span><span ref="12"></span><span classes="selected" ref="11"></span><span classes="selected" ref="9"></span><span classes="selected" ref="14"></span><span classes="selected" ref="5"></span><span ref="16"></span><span ref="8"></span><span ref="7"></span><span classes="selected" ref="10"></span><span ref="2"></span><button id="submit" classes="secondary-action" ref="15" text="submit"></button></div></div></body>
Select all the shades of blue
click
15
null
stop
Select all the shades of green <body ref="10"><div id="wrap" ref="15"><div id="area" ref="11"><span ref="14"></span><span classes="selected" ref="2"></span><span ref="8"></span><span ref="3"></span><span ref="7"></span><span ref="13"></span><span classes="selected" ref="1"></span><span ref="9"></span><span ref="12"></span><span ref="6"></span><span ref="5"></span><span classes="selected" ref="16"></span><button id="submit" classes="secondary-action" ref="4" text="submit"></button></div></div></body>
Select all the shades of green
click
4
null
stop
Click on the link "massa.". <body ref="17"><div id="wrap" ref="16"><div id="area" ref="10"><span classes="alink" ref="12" text="ullamcorper"></span><t ref="-26" text="sed tincidunt"></t><span classes="alink" ref="4" text="etiam."></span><t ref="-27" text="risus arcu senectus"></t><span classes="alink" ref="3" text="donec"></span><span classes="alink" ref="9" text="donec"></span><span classes="alink" ref="17" text="scelerisque"></span><span classes="alink" ref="16" text="elementum"></span><t ref="-28" text="volutpat"></t><span classes="alink" ref="10" text="aliquam"></span><span classes="alink" ref="13" text="massa."></span><t ref="-29" text="id. suspendisse"></t><t ref="-30" text="non praesent suscipit bibendum."></t></div></div></body>,
Click on the link "massa.".
click
17
null
stop
Select Sweden from the list <body ref="4"><div id="wrap" ref="2"><div id="area" ref="1"><select id="options" ref="3"></select><button classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select Sweden from the list
click
3
null
stop
Select Florrie from the list <body ref="3"><div id="wrap" ref="4"><div id="area" ref="2"><select id="options" ref="1"></select><button classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select Florrie from the list
click
1
null
stop
Select Livia from the list <body ref="1"><div id="wrap" ref="2"><div id="area" ref="4"><select id="options" ref="3"></select><button classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select Livia from the list
click
3
null
stop
Select Merrily from the list <body ref="1"><div id="wrap" ref="4"><div id="area" ref="2"><select id="options" ref="3"></select><button classes="secondary-action" ref="5" text="submit"></button></div></div></body>,
Select Merrily from the list
click
3
null
stop
Select Hong Kong from the list <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><select id="options" ref="1"></select><button classes="secondary-action" ref="3" text="submit"></button></div></div></body>,
Select Hong Kong from the list
click
1
null
stop
click submit <body ref="2"><div id="wrap" ref="4"><div id="area" ref="5"><select id="options" ref="1"></select><button classes="secondary-action" ref="3" text="submit"></button></div></div></body>
click submit
click
3
null
stop
Select Delila from the list <body ref="3"><div id="wrap" ref="1"><div id="area" ref="5"><select id="options" ref="4"></select><button classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select Delila from the list
click
4
null
stop
Select Brett from the list <body ref="2"><div id="wrap" ref="3"><div id="area" ref="5"><select id="options" ref="4"></select><button classes="secondary-action" ref="1" text="submit"></button></div></div></body>,
Select Brett from the list
click
4
null
stop
Select Sri Lanka from the list <body ref="4"><div id="wrap" ref="1"><div id="area" ref="3"><select id="options" ref="5"></select><button classes="secondary-action" ref="2" text="submit"></button></div></div></body>,
Select Sri Lanka from the list
click
5
null
stop
{click,4,} Enter an item that starts with "Fran" and ends with "nce". <body ref="11"><div id="wrap" ref="8"><div id="area" ref="9"><label ref="1" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="10"><div ref="3" text="iraq"></div></div></body>,
Enter an item that starts with "Fran" and ends with "nce".
keydown
4
france
stop
{click,4,} Enter an item that starts with "Phil" and ends with "es". <body ref="1"><div id="wrap" ref="6"><div id="area" ref="5"><label ref="9" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="2"><div ref="10" text="venezuela"></div></div></body>,
Enter an item that starts with "Phil" and ends with "es".
keydown
4
philippines
stop
{click,8,} Enter an item that starts with "Syri" and ends with "ic". <body ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><label ref="12" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="8"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="11" text="mauritius"></div></div></body>,
Enter an item that starts with "Syri" and ends with "ic".
keydown
8
syrian arab republic
stop
click submit <body ref="6"><div id="wrap" ref="10"><div id="area" ref="2"><label ref="12" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="8" value="syrian arab republic"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="5" text="syrian arab republic"></div></div></body>
click submit
click
7
null
stop
{click,6,} Enter an item that starts with "Guy". <body ref="5"><div id="wrap" ref="3"><div id="area" ref="9"><label ref="4" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="7" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="8"><div ref="1" text="ireland"></div></div></body>,
Enter an item that starts with "Guy".
keydown
6
guyana
stop
{click,6,} Enter an item that starts with "Ira" and ends with "raq". <body ref="2"><div id="wrap" ref="7"><div id="area" ref="11"><label ref="13" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="8" text="guyana"></div></div></body>,
Enter an item that starts with "Ira" and ends with "raq".
keydown
6
iraq
stop
{click,9,} Enter an item that starts with "Swa" and ends with "and". <body ref="2"><div id="wrap" ref="6"><div id="area" ref="12"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="9"></input_text><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="5" text="martinique"></div></div></body>,
Enter an item that starts with "Swa" and ends with "and".
keydown
9
swaziland
stop
click submit <body ref="2"><div id="wrap" ref="6"><div id="area" ref="12"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="9" value="swaziland"></input_text><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="11" text="swaziland"></div></div></body>
click submit
click
10
null
stop
{click,9,} Enter an item that starts with "Co" and ends with "ca". <body ref="6"><div id="wrap" ref="8"><div id="area" ref="7"><label ref="1" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="9"></input_text><button id="subbtn" classes="secondary-action" ref="5" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="3"><div ref="2" text="angola"></div></div></body>,
Enter an item that starts with "Co" and ends with "ca".
keydown
9
costa rica
stop
{click,1,} Enter an item that starts with "Th" and ends with "nd". <body ref="7"><div id="wrap" ref="5"><div id="area" ref="11"><label ref="12" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="4" text="romania"></div></div></body>,
Enter an item that starts with "Th" and ends with "nd".
keydown
1
thailand
stop
{click,4,} Enter an item that starts with "Pa". <body ref="5"><div id="wrap" ref="7"><div id="area" ref="1"><label ref="2" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="6"></div></body>,
Enter an item that starts with "Pa".
keydown
4
pancake
stop
{click,11,} Enter an item that starts with "Mal". <body ref="3"><div id="wrap" ref="18"><div id="area" ref="8"><label ref="15" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="11"></input_text><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="16" text="american samoa"></div></div></body>,
Enter an item that starts with "Mal".
keydown
11
malaysia
stop
click submit <body ref="3"><div id="wrap" ref="18"><div id="area" ref="8"><label ref="15" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="11" value="malaysia"></input_text><button id="subbtn" classes="secondary-action" ref="14" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="4"><div ref="6" text="malaysia"></div></div></body>
click submit
click
14
null
stop
{click,8,} Enter an item that starts with "May". <body ref="7"><div id="wrap" ref="6"><div id="area" ref="9"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="8"></input_text><button id="subbtn" classes="secondary-action" ref="1" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="2"><div ref="4" text="ukraine"></div></div></body>,
Enter an item that starts with "May".
keydown
8
mayotte
stop
{click,4,} Enter an item that starts with "Am". <body ref="1"><div id="wrap" ref="3"><div id="area" ref="6"><label ref="10" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="5" text="saint martin"></div></div></body>,
Enter an item that starts with "Am".
keydown
4
american samoa
stop
click submit <body ref="1"><div id="wrap" ref="3"><div id="area" ref="6"><label ref="10" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4" value="american samoa"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="12" text="american samoa"></div></div></body>
click submit
click
2
null
stop
{click,3,} Enter an item that starts with "Ser" and ends with "ia". <body ref="7"><div id="wrap" ref="1"><div id="area" ref="6"><label ref="2" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="3"></input_text><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="11"><div ref="12" text="no search results."></div></div></body>,
Enter an item that starts with "Ser" and ends with "ia".
keydown
3
serbia
stop
{click,12,} Enter an item that starts with "Roma" and ends with "ania". <body ref="5"><div id="wrap" ref="7"><div id="area" ref="9"><label ref="11" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="12"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="10"><div ref="8" text="philippines"></div></div></body>,
Enter an item that starts with "Roma" and ends with "ania".
keydown
12
romania
stop
{click,10,} Enter an item that starts with "New". <body ref="3"><div id="wrap" ref="4"><div id="area" ref="6"><label ref="5" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="10"></input_text><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="11"><div ref="1" text="pakistan"></div></div></body>,
Enter an item that starts with "New".
keydown
10
new caledonia
stop
{click,7,} Enter an item that starts with "Co" and ends with "bia". <body ref="17"><div id="wrap" ref="10"><div id="area" ref="15"><label ref="14" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="8" text="new caledonia"></div></div></body>,
Enter an item that starts with "Co" and ends with "bia".
keydown
7
colombia
stop
{click,5,} Enter an item that starts with "Vene" and ends with "uela". <body ref="9"><div id="wrap" ref="11"><div id="area" ref="8"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="5"></input_text><button id="subbtn" classes="secondary-action" ref="10" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="7"><div ref="6" text="1 result is available, use up and down arrow keys to navigate."></div></div></body>,
Enter an item that starts with "Vene" and ends with "uela".
keydown
5
venezuela
stop
{click,4,} Enter an item that starts with "Thai" and ends with "and". <body ref="10"><div id="wrap" ref="8"><div id="area" ref="5"><label ref="2" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="6"><div ref="1" text="france"></div></div></body>,
Enter an item that starts with "Thai" and ends with "and".
keydown
4
thailand
stop
{click,2,} Enter an item that starts with "Uk". <body ref="9"><div id="wrap" ref="10"><div id="area" ref="5"><label ref="6" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="2"></input_text><button id="subbtn" classes="secondary-action" ref="12" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="11"><div ref="8" text="trinidad and tobago"></div></div></body>,
Enter an item that starts with "Uk".
keydown
2
ukraine
stop
{click,4,} Enter an item that starts with "Ang" and ends with "la". <body ref="7"><div id="wrap" ref="12"><div id="area" ref="8"><label ref="9" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="3" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="11"><div ref="6" text="serbia"></div></div></body>,
Enter an item that starts with "Ang" and ends with "la".
keydown
4
angola
stop
{click,6,} Enter an item that starts with "Guad". <body ref="15"><div id="wrap" ref="1"><div id="area" ref="3"><label ref="8" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="16"><div ref="7" text="colombia"></div></div></body>,
Enter an item that starts with "Guad".
keydown
6
guadeloupe
stop
{click,8,} Enter an item that starts with "Uni". <body ref="3"><div id="wrap" ref="5"><div id="area" ref="4"><label ref="2" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="8"></input_text><button id="subbtn" classes="secondary-action" ref="9" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="6"><div ref="7" text="no search results."></div></div></body>,
Enter an item that starts with "Uni".
keydown
8
university
stop
{click,1,} Enter an item that starts with "Ho". <body ref="13"><div id="wrap" ref="8"><div id="area" ref="3"><label ref="14" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="2" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="12"><div ref="5" text="lebanon"></div></div></body>,
Enter an item that starts with "Ho".
keydown
1
honduras
stop
{click,4,} Enter an item that starts with "Kor" and ends with "rea". <body ref="7"><div id="wrap" ref="2"><div id="area" ref="3"><label ref="5" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="4"></input_text><button id="subbtn" classes="secondary-action" ref="6" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="1"><div ref="8" text="no search results."></div></div></body>,
Enter an item that starts with "Kor" and ends with "rea".
keydown
4
korea
stop
{click,1,} Enter an item that starts with "Tr" and ends with "bago". <body ref="10"><div id="wrap" ref="7"><div id="area" ref="2"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="1"></input_text><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="9"><div ref="11" text="swaziland"></div></div></body>,
Enter an item that starts with "Tr" and ends with "bago".
keydown
1
trinidad and tobago
stop
{click,7,} Enter an item that starts with "Pak". <body ref="10"><div id="wrap" ref="1"><div id="area" ref="5"><label ref="4" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="7"></input_text><button id="subbtn" classes="secondary-action" ref="11" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="2"><div ref="3" text="no search results."></div></div></body>,
Enter an item that starts with "Pak".
keydown
7
pakistan
stop
{click,6,} Enter an item that starts with "Maur". <body ref="3"><div id="wrap" ref="2"><div id="area" ref="9"><label ref="8" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="6"></input_text><button id="subbtn" classes="secondary-action" ref="4" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="7"><div ref="5" text="korea"></div></div></body>,
Enter an item that starts with "Maur".
keydown
6
mauritius
stop
{click,10,} Enter an item that starts with "Le". <body ref="11"><div id="wrap" ref="12"><div id="area" ref="7"><label ref="3" text="tags:"></label><input_text id="tags" classes="ui-autocomplete-input" ref="10"></input_text><button id="subbtn" classes="secondary-action" ref="8" text="submit"></button></div></div><div classes="ui-helper-hidden-accessible" ref="5"></div></body>,
Enter an item that starts with "Le".
keydown
10
lebanon
stop
Look for the email from Edin and forward to Flora. <body ref="38"><div id="wrap" ref="31"><div id="area" ref="7"><div id="forward" ref="44"><div id="forward-bar" ref="37"><span id="close-forward" ref="12"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="42"><div classes="forward-info" ref="16"><label text="to:" ref="17"></label><input_text classes="forward-sender" ref="35"></input_text></div><div classes="forward-subject" ref="20"><label text="subject:" ref="32"></label><t text="tempus, nunc." ref="-6"></t></div></div><div classes="forward-body" ref="18"><textarea value="integer augue lorem nullam non orci." id="forward-text" ref="2"></textarea></div></div></div></div></body>,
Look for the email from Edin and forward to Flora.
click
35
null
continue
{click,35,} Look for the email from Edin and forward to Flora. <body ref="38"><div id="wrap" ref="31"><div id="area" ref="7"><div id="forward" ref="44"><div id="forward-bar" ref="37"><span id="close-forward" ref="12"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="42"><div classes="forward-info" ref="16"><label text="to:" ref="17"></label><input_text classes="forward-sender" ref="35"></input_text></div><div classes="forward-subject" ref="20"><label text="subject:" ref="32"></label><t text="tempus, nunc." ref="-8"></t></div></div><div classes="forward-body" ref="18"><textarea value="integer augue lorem nullam non orci." id="forward-text" ref="2"></textarea></div></div></div></div></body>,
Look for the email from Edin and forward to Flora.
keydown
35
flora
stop
Clara wants the email you got from Jen. <body ref="46"><div id="wrap" ref="27"><div id="area" ref="42"><div id="forward" ref="26"><div id="forward-bar" ref="15"><span id="close-forward" ref="18"></span><span id="send-forward" ref="16"></span></div><div classes="forward-header" ref="21"><div classes="forward-info" ref="43"><label text="to:" ref="5"></label><input_text classes="forward-sender" ref="30"></input_text></div><div classes="forward-subject" ref="8"><label text="subject:" ref="34"></label><t text="eget." ref="-6"></t></div></div><div classes="forward-body" ref="13"><textarea value="pellentesque cras. sapien, ligula dictum aenean elit nunc amet ut." id="forward-text" ref="19"></textarea></div></div></div></div></body>,
Clara wants the email you got from Jen.
click
30
null
continue
{click,30,} Clara wants the email you got from Jen. <body ref="46"><div id="wrap" ref="27"><div id="area" ref="42"><div id="forward" ref="26"><div id="forward-bar" ref="15"><span id="close-forward" ref="18"></span><span id="send-forward" ref="16"></span></div><div classes="forward-header" ref="21"><div classes="forward-info" ref="43"><label text="to:" ref="5"></label><input_text classes="forward-sender" ref="30"></input_text></div><div classes="forward-subject" ref="8"><label text="subject:" ref="34"></label><t text="eget." ref="-8"></t></div></div><div classes="forward-body" ref="13"><textarea value="pellentesque cras. sapien, ligula dictum aenean elit nunc amet ut." id="forward-text" ref="19"></textarea></div></div></div></div></body>,
Clara wants the email you got from Jen.
keydown
30
clara
stop
Look for the email from Abby and forward to Jerrine. <body ref="9"><div id="wrap" ref="7"><div id="area" ref="11"><div id="forward" ref="3"><div id="forward-bar" ref="6"><span id="close-forward" ref="15"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="2"><label text="to:" ref="1"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="10"><label text="subject:" ref="5"></label><t text="auctor elementum." ref="-6"></t></div></div><div classes="forward-body" ref="12"><textarea value="lacus odio enim cursus. mattis. velit, aliquam euismod quam nec vel, egestas vestibulum." id="forward-text" ref="14"></textarea></div></div></div></div></body>,
Look for the email from Abby and forward to Jerrine.
click
13
null
continue
{click,13,} Look for the email from Abby and forward to Jerrine. <body ref="9"><div id="wrap" ref="7"><div id="area" ref="11"><div id="forward" ref="3"><div id="forward-bar" ref="6"><span id="close-forward" ref="15"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="2"><label text="to:" ref="1"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="10"><label text="subject:" ref="5"></label><t text="auctor elementum." ref="-8"></t></div></div><div classes="forward-body" ref="12"><textarea value="lacus odio enim cursus. mattis. velit, aliquam euismod quam nec vel, egestas vestibulum." id="forward-text" ref="14"></textarea></div></div></div></div></body>,
Look for the email from Abby and forward to Jerrine.
keydown
13
jerrine
stop
Locate the email by Tommi. Forward that email to Paulina. <body ref="7"><div id="wrap" ref="10"><div id="area" ref="42"><div id="forward" ref="26"><div id="forward-bar" ref="30"><span id="close-forward" ref="8"></span><span id="send-forward" ref="28"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="33"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="3"><label text="subject:" ref="21"></label><t text="dictum." ref="-6"></t></div></div><div classes="forward-body" ref="41"><textarea value="euismod in sem sed. tristique quam vel iaculis sed." id="forward-text" ref="27"></textarea></div></div></div></div></body>,
Locate the email by Tommi. Forward that email to Paulina.
click
12
null
continue
{click,12,} Locate the email by Tommi. Forward that email to Paulina. <body ref="7"><div id="wrap" ref="10"><div id="area" ref="42"><div id="forward" ref="26"><div id="forward-bar" ref="30"><span id="close-forward" ref="8"></span><span id="send-forward" ref="28"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="33"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="3"><label text="subject:" ref="21"></label><t text="dictum." ref="-8"></t></div></div><div classes="forward-body" ref="41"><textarea value="euismod in sem sed. tristique quam vel iaculis sed." id="forward-text" ref="27"></textarea></div></div></div></div></body>,
Locate the email by Tommi. Forward that email to Paulina.
keydown
12
paulina
stop
Go to the message from Sybille and send it to Aubrey. <body ref="9"><div id="wrap" ref="12"><div id="area" ref="7"><div id="forward" ref="14"><div id="forward-bar" ref="8"><span id="close-forward" ref="4"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="5"><div classes="forward-info" ref="2"><label text="to:" ref="10"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="1"><label text="subject:" ref="3"></label><t text="pulvinar." ref="-6"></t></div></div><div classes="forward-body" ref="15"><textarea value="vel. vel nulla sed libero diam auctor. pellentesque. convallis. tortor. arcu ipsum quis arcu." id="forward-text" ref="6"></textarea></div></div></div></div></body>,
Go to the message from Sybille and send it to Aubrey.
click
13
null
continue
{click,13,} Go to the message from Sybille and send it to Aubrey. <body ref="9"><div id="wrap" ref="12"><div id="area" ref="7"><div id="forward" ref="14"><div id="forward-bar" ref="8"><span id="close-forward" ref="4"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="5"><div classes="forward-info" ref="2"><label text="to:" ref="10"></label><input_text classes="forward-sender" ref="13"></input_text></div><div classes="forward-subject" ref="1"><label text="subject:" ref="3"></label><t text="pulvinar." ref="-8"></t></div></div><div classes="forward-body" ref="15"><textarea value="vel. vel nulla sed libero diam auctor. pellentesque. convallis. tortor. arcu ipsum quis arcu." id="forward-text" ref="6"></textarea></div></div></div></div></body>,
Go to the message from Sybille and send it to Aubrey.
keydown
13
aubrey
stop
Forward to Vivien the email from Elise. <body ref="21"><div id="wrap" ref="17"><div id="area" ref="31"><div id="forward" ref="42"><div id="forward-bar" ref="13"><span id="close-forward" ref="29"></span><span id="send-forward" ref="26"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="24"><label text="to:" ref="20"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="8"><label text="subject:" ref="44"></label><t text="arcu." ref="-6"></t></div></div><div classes="forward-body" ref="40"><textarea value="sapien. odio dui in. est hendrerit." id="forward-text" ref="11"></textarea></div></div></div></div></body>,
Forward to Vivien the email from Elise.
click
6
null
continue
{click,6,} Forward to Vivien the email from Elise. <body ref="21"><div id="wrap" ref="17"><div id="area" ref="31"><div id="forward" ref="42"><div id="forward-bar" ref="13"><span id="close-forward" ref="29"></span><span id="send-forward" ref="26"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="24"><label text="to:" ref="20"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="8"><label text="subject:" ref="44"></label><t text="arcu." ref="-8"></t></div></div><div classes="forward-body" ref="40"><textarea value="sapien. odio dui in. est hendrerit." id="forward-text" ref="11"></textarea></div></div></div></div></body>,
Forward to Vivien the email from Elise.
keydown
6
vivien
stop
I want the mail by Carolynn to be sent to Daphne. <body ref="23"><div id="wrap" ref="29"><div id="area" ref="24"><div id="forward" ref="30"><div id="forward-bar" ref="1"><span id="close-forward" ref="46"></span><span id="send-forward" ref="45"></span></div><div classes="forward-header" ref="17"><div classes="forward-info" ref="32"><label text="to:" ref="14"></label><input_text classes="forward-sender" ref="40"></input_text></div><div classes="forward-subject" ref="35"><label text="subject:" ref="42"></label><t text="tempus turpis." ref="-6"></t></div></div><div classes="forward-body" ref="38"><textarea value="ut velit. lorem tempus, mattis nunc eleifend nullam." id="forward-text" ref="39"></textarea></div></div></div></div></body>,
I want the mail by Carolynn to be sent to Daphne.
click
40
null
continue
{click,40,} I want the mail by Carolynn to be sent to Daphne. <body ref="23"><div id="wrap" ref="29"><div id="area" ref="24"><div id="forward" ref="30"><div id="forward-bar" ref="1"><span id="close-forward" ref="46"></span><span id="send-forward" ref="45"></span></div><div classes="forward-header" ref="17"><div classes="forward-info" ref="32"><label text="to:" ref="14"></label><input_text classes="forward-sender" ref="40"></input_text></div><div classes="forward-subject" ref="35"><label text="subject:" ref="42"></label><t text="tempus turpis." ref="-8"></t></div></div><div classes="forward-body" ref="38"><textarea value="ut velit. lorem tempus, mattis nunc eleifend nullam." id="forward-text" ref="39"></textarea></div></div></div></div></body>,
I want the mail by Carolynn to be sent to Daphne.
keydown
40
daphne
stop
Please forward the message from Mada to Carolina. <body ref="16"><div id="wrap" ref="27"><div id="area" ref="6"><div id="forward" ref="19"><div id="forward-bar" ref="9"><span id="close-forward" ref="29"></span><span id="send-forward" ref="15"></span></div><div classes="forward-header" ref="38"><div classes="forward-info" ref="43"><label text="to:" ref="33"></label><input_text classes="forward-sender" ref="35"></input_text></div><div classes="forward-subject" ref="32"><label text="subject:" ref="34"></label><t text="quis varius." ref="-12"></t></div></div><div classes="forward-body" ref="10"><textarea value="ipsum eget ut. consequat malesuada odio. iaculis. vitae ullamcorper." id="forward-text" ref="13"></textarea></div></div></div></div></body>,
Please forward the message from Mada to Carolina.
click
35
null
continue
{click,35,} Please forward the message from Mada to Carolina. <body ref="16"><div id="wrap" ref="27"><div id="area" ref="6"><div id="forward" ref="19"><div id="forward-bar" ref="9"><span id="close-forward" ref="29"></span><span id="send-forward" ref="15"></span></div><div classes="forward-header" ref="38"><div classes="forward-info" ref="43"><label text="to:" ref="33"></label><input_text classes="forward-sender" ref="35"></input_text></div><div classes="forward-subject" ref="32"><label text="subject:" ref="34"></label><t text="quis varius." ref="-14"></t></div></div><div classes="forward-body" ref="10"><textarea value="ipsum eget ut. consequat malesuada odio. iaculis. vitae ullamcorper." id="forward-text" ref="13"></textarea></div></div></div></div></body>,
Please forward the message from Mada to Carolina.
keydown
35
carolina
stop
Navigate to the message from Merlina and send it to Kettie. <body ref="9"><div id="wrap" ref="39"><div id="area" ref="29"><div id="forward" ref="25"><div id="forward-bar" ref="15"><span id="close-forward" ref="12"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="44"><label text="to:" ref="2"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="23"><label text="subject:" ref="34"></label><t text="tristique eu." ref="-12"></t></div></div><div classes="forward-body" ref="36"><textarea value="enim suspendisse leo tortor blandit. aliquam amet tortor. pellentesque sed. tincidunt volutpat. enim." id="forward-text" ref="19"></textarea></div></div></div></div></body>,
Navigate to the message from Merlina and send it to Kettie.
click
6
null
continue
{click,6,} Navigate to the message from Merlina and send it to Kettie. <body ref="9"><div id="wrap" ref="39"><div id="area" ref="29"><div id="forward" ref="25"><div id="forward-bar" ref="15"><span id="close-forward" ref="12"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="44"><label text="to:" ref="2"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="23"><label text="subject:" ref="34"></label><t text="tristique eu." ref="-14"></t></div></div><div classes="forward-body" ref="36"><textarea value="enim suspendisse leo tortor blandit. aliquam amet tortor. pellentesque sed. tincidunt volutpat. enim." id="forward-text" ref="19"></textarea></div></div></div></div></body>,
Navigate to the message from Merlina and send it to Kettie.
keydown
6
kettie
stop
Ethelin is waiting for the email by Catie. <body ref="22"><div id="wrap" ref="38"><div id="area" ref="18"><div id="forward" ref="1"><div id="forward-bar" ref="17"><span id="close-forward" ref="43"></span><span id="send-forward" ref="44"></span></div><div classes="forward-header" ref="41"><div classes="forward-info" ref="4"><label text="to:" ref="26"></label><input_text classes="forward-sender" ref="45"></input_text></div><div classes="forward-subject" ref="31"><label text="subject:" ref="27"></label><t text="egestas." ref="-6"></t></div></div><div classes="forward-body" ref="35"><textarea value="congue. eget faucibus facilisis id id. vulputate cursus." id="forward-text" ref="25"></textarea></div></div></div></div></body>,
Ethelin is waiting for the email by Catie.
click
45
null
continue
{click,45,} Ethelin is waiting for the email by Catie. <body ref="22"><div id="wrap" ref="38"><div id="area" ref="18"><div id="forward" ref="1"><div id="forward-bar" ref="17"><span id="close-forward" ref="43"></span><span id="send-forward" ref="44"></span></div><div classes="forward-header" ref="41"><div classes="forward-info" ref="4"><label text="to:" ref="26"></label><input_text classes="forward-sender" ref="45"></input_text></div><div classes="forward-subject" ref="31"><label text="subject:" ref="27"></label><t text="egestas." ref="-8"></t></div></div><div classes="forward-body" ref="35"><textarea value="congue. eget faucibus facilisis id id. vulputate cursus." id="forward-text" ref="25"></textarea></div></div></div></div></body>,
Ethelin is waiting for the email by Catie.
keydown
45
ethelin
stop
Look for the email from Alvina and forward to Susi. <body ref="5"><div id="wrap" ref="6"><div id="area" ref="29"><div id="forward" ref="41"><div id="forward-bar" ref="36"><span id="close-forward" ref="2"></span><span id="send-forward" ref="25"></span></div><div classes="forward-header" ref="30"><div classes="forward-info" ref="43"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="8"></input_text></div><div classes="forward-subject" ref="19"><label text="subject:" ref="26"></label><t text="et porttitor." ref="-6"></t></div></div><div classes="forward-body" ref="39"><textarea value="commodo venenatis. sit elit nibh. turpis amet, vestibulum." id="forward-text" ref="38"></textarea></div></div></div></div></body>,
Look for the email from Alvina and forward to Susi.
click
8
null
continue
{click,8,} Look for the email from Alvina and forward to Susi. <body ref="5"><div id="wrap" ref="6"><div id="area" ref="29"><div id="forward" ref="41"><div id="forward-bar" ref="36"><span id="close-forward" ref="2"></span><span id="send-forward" ref="25"></span></div><div classes="forward-header" ref="30"><div classes="forward-info" ref="43"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="8"></input_text></div><div classes="forward-subject" ref="19"><label text="subject:" ref="26"></label><t text="et porttitor." ref="-8"></t></div></div><div classes="forward-body" ref="39"><textarea value="commodo venenatis. sit elit nibh. turpis amet, vestibulum." id="forward-text" ref="38"></textarea></div></div></div></div></body>,
Look for the email from Alvina and forward to Susi.
keydown
8
susi
stop
Forward the email from Leola to Therese. <body ref="9"><div id="wrap" ref="4"><div id="area" ref="2"><div id="forward" ref="10"><div id="forward-bar" ref="15"><span id="close-forward" ref="13"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="12"><div classes="forward-info" ref="7"><label text="to:" ref="8"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="11"><label text="subject:" ref="6"></label><t text="felis." ref="-6"></t></div></div><div classes="forward-body" ref="1"><textarea value="nibh scelerisque proin laoreet sed ultrices egestas neque suscipit diam." id="forward-text" ref="14"></textarea></div></div></div></div></body>,
Forward the email from Leola to Therese.
click
3
null
continue
{click,3,} Forward the email from Leola to Therese. <body ref="9"><div id="wrap" ref="4"><div id="area" ref="2"><div id="forward" ref="10"><div id="forward-bar" ref="15"><span id="close-forward" ref="13"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="12"><div classes="forward-info" ref="7"><label text="to:" ref="8"></label><input_text classes="forward-sender" ref="3"></input_text></div><div classes="forward-subject" ref="11"><label text="subject:" ref="6"></label><t text="felis." ref="-8"></t></div></div><div classes="forward-body" ref="1"><textarea value="nibh scelerisque proin laoreet sed ultrices egestas neque suscipit diam." id="forward-text" ref="14"></textarea></div></div></div></div></body>,
Forward the email from Leola to Therese.
keydown
3
therese
stop
Look for the email from Mozelle and forward to Michaeline. <body ref="28"><div id="wrap" ref="23"><div id="area" ref="34"><div id="forward" ref="13"><div id="forward-bar" ref="5"><span id="close-forward" ref="2"></span><span id="send-forward" ref="21"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="10"><label text="to:" ref="27"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="44"><label text="subject:" ref="16"></label><t text="mi. nisl." ref="-6"></t></div></div><div classes="forward-body" ref="30"><textarea value="eu suscipit sociis sapien. rhoncus arcu ut dignissim nec purus tellus purus amet." id="forward-text" ref="42"></textarea></div></div></div></div></body>,
Look for the email from Mozelle and forward to Michaeline.
click
12
null
continue
{click,12,} Look for the email from Mozelle and forward to Michaeline. <body ref="28"><div id="wrap" ref="23"><div id="area" ref="34"><div id="forward" ref="13"><div id="forward-bar" ref="5"><span id="close-forward" ref="2"></span><span id="send-forward" ref="21"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="10"><label text="to:" ref="27"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="44"><label text="subject:" ref="16"></label><t text="mi. nisl." ref="-8"></t></div></div><div classes="forward-body" ref="30"><textarea value="eu suscipit sociis sapien. rhoncus arcu ut dignissim nec purus tellus purus amet." id="forward-text" ref="42"></textarea></div></div></div></div></body>,
Look for the email from Mozelle and forward to Michaeline.
keydown
12
michaeline
stop
Send to Aeriel the email you got from Kipp. <body ref="36"><div id="wrap" ref="34"><div id="area" ref="9"><div id="forward" ref="2"><div id="forward-bar" ref="38"><span id="close-forward" ref="17"></span><span id="send-forward" ref="27"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="13"><label text="to:" ref="24"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="37"><label text="subject:" ref="44"></label><t text="sit." ref="-6"></t></div></div><div classes="forward-body" ref="12"><textarea value="risus nec. vitae. eget vel quam ut viverra. aliquet mauris mi." id="forward-text" ref="33"></textarea></div></div></div></div></body>,
Send to Aeriel the email you got from Kipp.
click
4
null
continue
{click,4,} Send to Aeriel the email you got from Kipp. <body ref="36"><div id="wrap" ref="34"><div id="area" ref="9"><div id="forward" ref="2"><div id="forward-bar" ref="38"><span id="close-forward" ref="17"></span><span id="send-forward" ref="27"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="13"><label text="to:" ref="24"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="37"><label text="subject:" ref="44"></label><t text="sit." ref="-8"></t></div></div><div classes="forward-body" ref="12"><textarea value="risus nec. vitae. eget vel quam ut viverra. aliquet mauris mi." id="forward-text" ref="33"></textarea></div></div></div></div></body>,
Send to Aeriel the email you got from Kipp.
keydown
4
aeriel
stop
Amii wants his or her message to be sent to Odille. <body ref="31"><div id="wrap" ref="1"><div id="area" ref="26"><div id="forward" ref="35"><div id="forward-bar" ref="15"><span id="close-forward" ref="30"></span><span id="send-forward" ref="18"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="3"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="20"></input_text></div><div classes="forward-subject" ref="38"><label text="subject:" ref="8"></label><t text="varius." ref="-6"></t></div></div><div classes="forward-body" ref="40"><textarea value="risus turpis nunc, egestas at." id="forward-text" ref="28"></textarea></div></div></div></div></body>,
Amii wants his or her message to be sent to Odille.
click
20
null
continue
{click,20,} Amii wants his or her message to be sent to Odille. <body ref="31"><div id="wrap" ref="1"><div id="area" ref="26"><div id="forward" ref="35"><div id="forward-bar" ref="15"><span id="close-forward" ref="30"></span><span id="send-forward" ref="18"></span></div><div classes="forward-header" ref="22"><div classes="forward-info" ref="3"><label text="to:" ref="4"></label><input_text classes="forward-sender" ref="20"></input_text></div><div classes="forward-subject" ref="38"><label text="subject:" ref="8"></label><t text="varius." ref="-8"></t></div></div><div classes="forward-body" ref="40"><textarea value="risus turpis nunc, egestas at." id="forward-text" ref="28"></textarea></div></div></div></div></body>,
Amii wants his or her message to be sent to Odille.
keydown
20
odille
stop
Look for the email from Maris and forward to Kissee. <body ref="6"><div id="wrap" ref="7"><div id="area" ref="46"><div id="forward" ref="22"><div id="forward-bar" ref="24"><span id="close-forward" ref="39"></span><span id="send-forward" ref="41"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="32"><label text="to:" ref="5"></label><input_text classes="forward-sender" ref="14"></input_text></div><div classes="forward-subject" ref="27"><label text="subject:" ref="1"></label><t text="nunc eget." ref="-6"></t></div></div><div classes="forward-body" ref="16"><textarea value="a id purus ipsum. vitae pharetra sagittis risus elementum venenatis, ipsum. praesent mollis." id="forward-text" ref="4"></textarea></div></div></div></div></body>,
Look for the email from Maris and forward to Kissee.
click
14
null
continue
{click,14,} Look for the email from Maris and forward to Kissee. <body ref="6"><div id="wrap" ref="7"><div id="area" ref="46"><div id="forward" ref="22"><div id="forward-bar" ref="24"><span id="close-forward" ref="39"></span><span id="send-forward" ref="41"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="32"><label text="to:" ref="5"></label><input_text classes="forward-sender" ref="14"></input_text></div><div classes="forward-subject" ref="27"><label text="subject:" ref="1"></label><t text="nunc eget." ref="-8"></t></div></div><div classes="forward-body" ref="16"><textarea value="a id purus ipsum. vitae pharetra sagittis risus elementum venenatis, ipsum. praesent mollis." id="forward-text" ref="4"></textarea></div></div></div></div></body>,
Look for the email from Maris and forward to Kissee.
keydown
14
kissee
stop