{ // 获取包含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 !== 'PDF TO Markdown' && linkText !== 'PDF TO Markdown' ) { link.textContent = 'PDF TO 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 !== 'Voice Cloning' ) { link.textContent = 'Voice Cloning'; link.href = 'https://vibevoice.info/'; 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, 'PDF TO 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":"Text Alyse \"Est eget sagittis nisi.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"est eget sagittis nisi."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2001,"cells":{"history_episodes":{"kind":"string","value":" Find the email from Rochella and forward it to Merilyn.
, "},"instruction":{"kind":"string","value":"Find the email from Rochella and forward it to Merilyn. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2002,"cells":{"history_episodes":{"kind":"string","value":"{click,6,} Find the email from Rochella and forward it to Merilyn.
, "},"instruction":{"kind":"string","value":"Find the email from Rochella and forward it to Merilyn. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":6,"string":"6"},"keydown_text":{"kind":"string","value":"merilyn"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2003,"cells":{"history_episodes":{"kind":"string","value":" find Joleen mail and reply with a \"Ornare. Ut.\"
, "},"instruction":{"kind":"string","value":"find Joleen mail and reply with a \"Ornare. Ut.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2004,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} find Joleen mail and reply with a \"Ornare. Ut.\"
, "},"instruction":{"kind":"string","value":"find Joleen mail and reply with a \"Ornare. Ut.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"omare. ut."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2005,"cells":{"history_episodes":{"kind":"string","value":" forward Pearl\\s last email to Hesther
, "},"instruction":{"kind":"string","value":"forward Pearl\\s last email to Hesther "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2006,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} forward Pearl\\s last email to Hesther
, "},"instruction":{"kind":"string","value":"forward Pearl\\s last email to Hesther "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"her"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2007,"cells":{"history_episodes":{"kind":"string","value":" Forward email from Marjorie to Ara
, "},"instruction":{"kind":"string","value":"Forward email from Marjorie to Ara "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":54,"string":"54"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2008,"cells":{"history_episodes":{"kind":"string","value":"{click,54,} Forward email from Marjorie to Ara
, "},"instruction":{"kind":"string","value":"Forward email from Marjorie to Ara "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":54,"string":"54"},"keydown_text":{"kind":"string","value":"ara"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2009,"cells":{"history_episodes":{"kind":"string","value":" Please find that email from Mirna and forward to by email to Rebecka.
, "},"instruction":{"kind":"string","value":"Please find that email from Mirna and forward to by email to Rebecka. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":65,"string":"65"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2010,"cells":{"history_episodes":{"kind":"string","value":"{click,65,} Please find that email from Mirna and forward to by email to Rebecka.
, "},"instruction":{"kind":"string","value":"Please find that email from Mirna and forward to by email to Rebecka. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":65,"string":"65"},"keydown_text":{"kind":"string","value":"rebecka"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2011,"cells":{"history_episodes":{"kind":"string","value":" Send Nadeen\\s email to Hesther.
, "},"instruction":{"kind":"string","value":"Send Nadeen\\s email to Hesther. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":40,"string":"40"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2012,"cells":{"history_episodes":{"kind":"string","value":"{click,40,} Send Nadeen\\s email to Hesther.
, "},"instruction":{"kind":"string","value":"Send Nadeen\\s email to Hesther. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":40,"string":"40"},"keydown_text":{"kind":"string","value":"hesther"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2013,"cells":{"history_episodes":{"kind":"string","value":" Forward most recent email from Angele to Ina.
, "},"instruction":{"kind":"string","value":"Forward most recent email from Angele to Ina. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":72,"string":"72"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2014,"cells":{"history_episodes":{"kind":"string","value":"{click,72,} Forward most recent email from Angele to Ina.
, "},"instruction":{"kind":"string","value":"Forward most recent email from Angele to Ina. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":72,"string":"72"},"keydown_text":{"kind":"string","value":"ina"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2015,"cells":{"history_episodes":{"kind":"string","value":" Forward Cassondra the email from Hestia.
, "},"instruction":{"kind":"string","value":"Forward Cassondra the email from Hestia. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2016,"cells":{"history_episodes":{"kind":"string","value":" Please find my email from Lyndsay and forward it to Viki.
, "},"instruction":{"kind":"string","value":"Please find my email from Lyndsay and forward it to Viki. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2017,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Please find my email from Lyndsay and forward it to Viki.
, "},"instruction":{"kind":"string","value":"Please find my email from Lyndsay and forward it to Viki. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"viki"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2018,"cells":{"history_episodes":{"kind":"string","value":" Locate Carmel\\s email from today and send back \"Eget.\".
, "},"instruction":{"kind":"string","value":"Locate Carmel\\s email from today and send back \"Eget.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2019,"cells":{"history_episodes":{"kind":"string","value":"{click,30,} Locate Carmel\\s email from today and send back \"Eget.\".
, "},"instruction":{"kind":"string","value":"Locate Carmel\\s email from today and send back \"Eget.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"string","value":"eget"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2020,"cells":{"history_episodes":{"kind":"string","value":" Take Petronella\\s email and give it to Gusta.
, "},"instruction":{"kind":"string","value":"Take Petronella\\s email and give it to Gusta. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":55,"string":"55"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2021,"cells":{"history_episodes":{"kind":"string","value":"{click,55,} Take Petronella\\s email and give it to Gusta.
, "},"instruction":{"kind":"string","value":"Take Petronella\\s email and give it to Gusta. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":55,"string":"55"},"keydown_text":{"kind":"string","value":"gusta"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2022,"cells":{"history_episodes":{"kind":"string","value":" forward the email from Annadiane to Janaya.
, "},"instruction":{"kind":"string","value":"forward the email from Annadiane to Janaya. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":79,"string":"79"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2023,"cells":{"history_episodes":{"kind":"string","value":"{click,79,} forward the email from Annadiane to Janaya.
, "},"instruction":{"kind":"string","value":"forward the email from Annadiane to Janaya. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":79,"string":"79"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2024,"cells":{"history_episodes":{"kind":"string","value":" Answer the new email from Jandy with \"Arcu.\"
, "},"instruction":{"kind":"string","value":"Answer the new email from Jandy with \"Arcu.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2025,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Answer the new email from Jandy with \"Arcu.\"
, "},"instruction":{"kind":"string","value":"Answer the new email from Jandy with \"Arcu.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"arcu"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2026,"cells":{"history_episodes":{"kind":"string","value":" Look for the email that Karissa wrote in this email app and forward it to Eleanor
, "},"instruction":{"kind":"string","value":"Look for the email that Karissa wrote in this email app and forward it to Eleanor "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":47,"string":"47"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2027,"cells":{"history_episodes":{"kind":"string","value":"{click,47,} Look for the email that Karissa wrote in this email app and forward it to Eleanor
, "},"instruction":{"kind":"string","value":"Look for the email that Karissa wrote in this email app and forward it to Eleanor "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":47,"string":"47"},"keydown_text":{"kind":"string","value":"eleanor"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2028,"cells":{"history_episodes":{"kind":"string","value":" Send the email from Wandie to Odille.
, "},"instruction":{"kind":"string","value":"Send the email from Wandie to Odille. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2029,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Send the email from Wandie to Odille.
, "},"instruction":{"kind":"string","value":"Send the email from Wandie to Odille. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"odille"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2030,"cells":{"history_episodes":{"kind":"string","value":" Find the Teddy email and reply, \"Pharetra.\"
, "},"instruction":{"kind":"string","value":"Find the Teddy email and reply, \"Pharetra.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2031,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Find the Teddy email and reply, \"Pharetra.\"
, "},"instruction":{"kind":"string","value":"Find the Teddy email and reply, \"Pharetra.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"pharetra"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2032,"cells":{"history_episodes":{"kind":"string","value":" Please send Anneliese a reply of \"Tempus, elit, nibh pulvinar.\".
, "},"instruction":{"kind":"string","value":"Please send Anneliese a reply of \"Tempus, elit, nibh pulvinar.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2033,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Please send Anneliese a reply of \"Tempus, elit, nibh pulvinar.\".
, "},"instruction":{"kind":"string","value":"Please send Anneliese a reply of \"Tempus, elit, nibh pulvinar.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"tempus, elit, nibh pulvinar."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2034,"cells":{"history_episodes":{"kind":"string","value":" Please reply to Marnie\\s email, \"Vestibulum viverra nulla.\"
, "},"instruction":{"kind":"string","value":"Please reply to Marnie\\s email, \"Vestibulum viverra nulla.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":43,"string":"43"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2035,"cells":{"history_episodes":{"kind":"string","value":"{click,43,} Please reply to Marnie\\s email, \"Vestibulum viverra nulla.\"
, "},"instruction":{"kind":"string","value":"Please reply to Marnie\\s email, \"Vestibulum viverra nulla.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":43,"string":"43"},"keydown_text":{"kind":"string","value":"vestibulum viverra nulla"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2036,"cells":{"history_episodes":{"kind":"string","value":" Let me send the email that I received from Regan over to Tiphany.
, "},"instruction":{"kind":"string","value":"Let me send the email that I received from Regan over to Tiphany. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2037,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Let me send the email that I received from Regan over to Tiphany.
, "},"instruction":{"kind":"string","value":"Let me send the email that I received from Regan over to Tiphany. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"tiphany"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2038,"cells":{"history_episodes":{"kind":"string","value":" Find the Fifi email and tell her, \"Proin.\"
, "},"instruction":{"kind":"string","value":"Find the Fifi email and tell her, \"Proin.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2039,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Find the Fifi email and tell her, \"Proin.\"
, "},"instruction":{"kind":"string","value":"Find the Fifi email and tell her, \"Proin.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"proin."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2040,"cells":{"history_episodes":{"kind":"string","value":" forward any email from Gaby to Coretta
, "},"instruction":{"kind":"string","value":"forward any email from Gaby to Coretta "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2041,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} forward any email from Gaby to Coretta
, "},"instruction":{"kind":"string","value":"forward any email from Gaby to Coretta "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"coretta"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2042,"cells":{"history_episodes":{"kind":"string","value":" Find Zarah\\s e-mail and reply with the words \"Bibendum.\"
, "},"instruction":{"kind":"string","value":"Find Zarah\\s e-mail and reply with the words \"Bibendum.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2043,"cells":{"history_episodes":{"kind":"string","value":"{click,30,} Find Zarah\\s e-mail and reply with the words \"Bibendum.\"
, "},"instruction":{"kind":"string","value":"Find Zarah\\s e-mail and reply with the words \"Bibendum.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"string","value":"bibendum"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2044,"cells":{"history_episodes":{"kind":"string","value":" Tell Lilli I said \"Ac.\"
, "},"instruction":{"kind":"string","value":"Tell Lilli I said \"Ac.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2045,"cells":{"history_episodes":{"kind":"string","value":"{click,9,} Tell Lilli I said \"Ac.\"
, "},"instruction":{"kind":"string","value":"Tell Lilli I said \"Ac.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":9,"string":"9"},"keydown_text":{"kind":"string","value":"ac."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2046,"cells":{"history_episodes":{"kind":"string","value":" Please reply to Merrielle by saying \"Et. Nunc,. Arcu at.\".
, "},"instruction":{"kind":"string","value":"Please reply to Merrielle by saying \"Et. Nunc,. Arcu at.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2047,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Please reply to Merrielle by saying \"Et. Nunc,. Arcu at.\".
, "},"instruction":{"kind":"string","value":"Please reply to Merrielle by saying \"Et. Nunc,. Arcu at.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"et. nunc,. arcu at."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2048,"cells":{"history_episodes":{"kind":"string","value":" In my inbox, there should be an email from Analiese, respond and tell him \"Ac.\".
, "},"instruction":{"kind":"string","value":"In my inbox, there should be an email from Analiese, respond and tell him \"Ac.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2049,"cells":{"history_episodes":{"kind":"string","value":"{click,10,} In my inbox, there should be an email from Analiese, respond and tell him \"Ac.\".
, "},"instruction":{"kind":"string","value":"In my inbox, there should be an email from Analiese, respond and tell him \"Ac.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":10,"string":"10"},"keydown_text":{"kind":"string","value":"ac."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2050,"cells":{"history_episodes":{"kind":"string","value":" Find the email from Edin and send it to Joly.
, "},"instruction":{"kind":"string","value":"Find the email from Edin and send it to Joly. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2051,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} Find the email from Edin and send it to Joly.
, "},"instruction":{"kind":"string","value":"Find the email from Edin and send it to Joly. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"joly"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2052,"cells":{"history_episodes":{"kind":"string","value":" Could you find Neala\\s email, then forward it to Kim?
, "},"instruction":{"kind":"string","value":"Could you find Neala\\s email, then forward it to Kim? "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2053,"cells":{"history_episodes":{"kind":"string","value":"{click,30,} Could you find Neala\\s email, then forward it to Kim?
, "},"instruction":{"kind":"string","value":"Could you find Neala\\s email, then forward it to Kim? "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":30,"string":"30"},"keydown_text":{"kind":"string","value":"kim"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2054,"cells":{"history_episodes":{"kind":"string","value":" Respond to Guillema\\s email with the text, \"Nunc vestibulum.\".
, "},"instruction":{"kind":"string","value":"Respond to Guillema\\s email with the text, \"Nunc vestibulum.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2055,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Respond to Guillema\\s email with the text, \"Nunc vestibulum.\".
, "},"instruction":{"kind":"string","value":"Respond to Guillema\\s email with the text, \"Nunc vestibulum.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"nunc vestibulum"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2056,"cells":{"history_episodes":{"kind":"string","value":" Replay to email from Ulrikaumeko with text, \"Purus integer nulla.\".
, "},"instruction":{"kind":"string","value":"Replay to email from Ulrikaumeko with text, \"Purus integer nulla.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":55,"string":"55"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2057,"cells":{"history_episodes":{"kind":"string","value":"{click,55,} Replay to email from Ulrikaumeko with text, \"Purus integer nulla.\".
, "},"instruction":{"kind":"string","value":"Replay to email from Ulrikaumeko with text, \"Purus integer nulla.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":55,"string":"55"},"keydown_text":{"kind":"string","value":"purus integer nulla."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2058,"cells":{"history_episodes":{"kind":"string","value":" Will you find the email from Antoinette and forward it to Claudie?
, "},"instruction":{"kind":"string","value":"Will you find the email from Antoinette and forward it to Claudie? "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2059,"cells":{"history_episodes":{"kind":"string","value":"{click,1,} Will you find the email from Antoinette and forward it to Claudie?
, "},"instruction":{"kind":"string","value":"Will you find the email from Antoinette and forward it to Claudie? "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":1,"string":"1"},"keydown_text":{"kind":"string","value":"claudie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2060,"cells":{"history_episodes":{"kind":"string","value":" Text \"Netus in vitae.\" to Shell
, "},"instruction":{"kind":"string","value":"Text \"Netus in vitae.\" to Shell "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2061,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Text \"Netus in vitae.\" to Shell
, "},"instruction":{"kind":"string","value":"Text \"Netus in vitae.\" to Shell "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"netus in vitae"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2062,"cells":{"history_episodes":{"kind":"string","value":" Find the email from Ania and send it to Analise.
, "},"instruction":{"kind":"string","value":"Find the email from Ania and send it to Analise. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2063,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Find the email from Ania and send it to Analise.
, "},"instruction":{"kind":"string","value":"Find the email from Ania and send it to Analise. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"analise"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2064,"cells":{"history_episodes":{"kind":"string","value":" Forward the email in the inbox app from Minerva to Luciana.
, "},"instruction":{"kind":"string","value":"Forward the email in the inbox app from Minerva to Luciana. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2065,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Forward the email in the inbox app from Minerva to Luciana.
, "},"instruction":{"kind":"string","value":"Forward the email in the inbox app from Minerva to Luciana. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"luciana"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2066,"cells":{"history_episodes":{"kind":"string","value":" Can you email Lucilia and tell her \"Sed. Eget.\"
, "},"instruction":{"kind":"string","value":"Can you email Lucilia and tell her \"Sed. Eget.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":45,"string":"45"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2067,"cells":{"history_episodes":{"kind":"string","value":"{click,45,} Can you email Lucilia and tell her \"Sed. Eget.\"
, "},"instruction":{"kind":"string","value":"Can you email Lucilia and tell her \"Sed. Eget.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":45,"string":"45"},"keydown_text":{"kind":"string","value":"sed. eget."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2068,"cells":{"history_episodes":{"kind":"string","value":" Forward Alane\\s email from yesterday to Arline.
, "},"instruction":{"kind":"string","value":"Forward Alane\\s email from yesterday to Arline. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2069,"cells":{"history_episodes":{"kind":"string","value":" Tell Sasha I said \"Ullamcorper.\"
, "},"instruction":{"kind":"string","value":"Tell Sasha I said \"Ullamcorper.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2070,"cells":{"history_episodes":{"kind":"string","value":"{click,5,} Tell Sasha I said \"Ullamcorper.\"
, "},"instruction":{"kind":"string","value":"Tell Sasha I said \"Ullamcorper.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":5,"string":"5"},"keydown_text":{"kind":"string","value":"ullamcorper"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2071,"cells":{"history_episodes":{"kind":"string","value":" reply to Aryn\\s last email \"Mauris euismod at.\"
, "},"instruction":{"kind":"string","value":"reply to Aryn\\s last email \"Mauris euismod at.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2072,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} reply to Aryn\\s last email \"Mauris euismod at.\"
, "},"instruction":{"kind":"string","value":"reply to Aryn\\s last email \"Mauris euismod at.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"mauris euismod at."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2073,"cells":{"history_episodes":{"kind":"string","value":" Let me send Ranee\\s email to Cindi.
, "},"instruction":{"kind":"string","value":"Let me send Ranee\\s email to Cindi. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2074,"cells":{"history_episodes":{"kind":"string","value":"{click,12,} Let me send Ranee\\s email to Cindi.
, "},"instruction":{"kind":"string","value":"Let me send Ranee\\s email to Cindi. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":12,"string":"12"},"keydown_text":{"kind":"string","value":"cindi"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2075,"cells":{"history_episodes":{"kind":"string","value":" Take Morgana\\s email and reply with \"Purus, odio.\".
, "},"instruction":{"kind":"string","value":"Take Morgana\\s email and reply with \"Purus, odio.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2076,"cells":{"history_episodes":{"kind":"string","value":"{click,2,} Take Morgana\\s email and reply with \"Purus, odio.\".
, "},"instruction":{"kind":"string","value":"Take Morgana\\s email and reply with \"Purus, odio.\". "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"string","value":"purus,odio"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2077,"cells":{"history_episodes":{"kind":"string","value":"{click,2,}{keydown,2,purus,odio} Take Morgana\\s email and reply with \"Purus, odio.\".
, "},"instruction":{"kind":"string","value":"Take Morgana\\s email and reply with \"Purus, odio.\". "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":2,"string":"2"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2078,"cells":{"history_episodes":{"kind":"string","value":" Please forward Lynnette\\s email to Marge.
, "},"instruction":{"kind":"string","value":"Please forward Lynnette\\s email to Marge. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2079,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Please forward Lynnette\\s email to Marge.
, "},"instruction":{"kind":"string","value":"Please forward Lynnette\\s email to Marge. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"marge"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2080,"cells":{"history_episodes":{"kind":"string","value":" Can you email Cariotta and tell her \"Proin nulla.\"

, "},"instruction":{"kind":"string","value":"Can you email Cariotta and tell her \"Proin nulla.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":3,"string":"3"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2081,"cells":{"history_episodes":{"kind":"string","value":"{click,3,} Can you email Cariotta and tell her \"Proin nulla.\"
, "},"instruction":{"kind":"string","value":"Can you email Cariotta and tell her \"Proin nulla.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2082,"cells":{"history_episodes":{"kind":"string","value":"{click,3,}{click,13,} Can you email Cariotta and tell her \"Proin nulla.\"
, "},"instruction":{"kind":"string","value":"Can you email Cariotta and tell her \"Proin nulla.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":13,"string":"13"},"keydown_text":{"kind":"string","value":"proin nulla."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2083,"cells":{"history_episodes":{"kind":"string","value":" Find the Dani email and tell her, \"Praesent ante tempus.\"
, "},"instruction":{"kind":"string","value":"Find the Dani email and tell her, \"Praesent ante tempus.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2084,"cells":{"history_episodes":{"kind":"string","value":"{click,7,} Find the Dani email and tell her, \"Praesent ante tempus.\"
, "},"instruction":{"kind":"string","value":"Find the Dani email and tell her, \"Praesent ante tempus.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":7,"string":"7"},"keydown_text":{"kind":"string","value":"praesent ante tempus."},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2085,"cells":{"history_episodes":{"kind":"string","value":" Forward Alexia\\s email that is in the email app to Kellie.
, "},"instruction":{"kind":"string","value":"Forward Alexia\\s email that is in the email app to Kellie. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2086,"cells":{"history_episodes":{"kind":"string","value":"{click,15,} Forward Alexia\\s email that is in the email app to Kellie.
, "},"instruction":{"kind":"string","value":"Forward Alexia\\s email that is in the email app to Kellie. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":15,"string":"15"},"keydown_text":{"kind":"string","value":"kellie"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2087,"cells":{"history_episodes":{"kind":"string","value":" forward Fina\\s email to Jeri
, "},"instruction":{"kind":"string","value":"forward Fina\\s email to Jeri "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2088,"cells":{"history_episodes":{"kind":"string","value":"{click,11,} forward Fina\\s email to Jeri
, "},"instruction":{"kind":"string","value":"forward Fina\\s email to Jeri "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":11,"string":"11"},"keydown_text":{"kind":"string","value":"jeri"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2089,"cells":{"history_episodes":{"kind":"string","value":" Make sure the email written by Wynn is forwarded to Luise.
, "},"instruction":{"kind":"string","value":"Make sure the email written by Wynn is forwarded to Luise. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":94,"string":"94"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2090,"cells":{"history_episodes":{"kind":"string","value":"{click,94,} Make sure the email written by Wynn is forwarded to Luise.
, "},"instruction":{"kind":"string","value":"Make sure the email written by Wynn is forwarded to Luise. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":94,"string":"94"},"keydown_text":{"kind":"string","value":"luise"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2091,"cells":{"history_episodes":{"kind":"string","value":" Can you please respond in my primary email box to Doll and write \"Felis elementum.\"
, "},"instruction":{"kind":"string","value":"Can you please respond in my primary email box to Doll and write \"Felis elementum.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":40,"string":"40"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2092,"cells":{"history_episodes":{"kind":"string","value":" I command you to give Ariela the email from Lizabeth.
, "},"instruction":{"kind":"string","value":"I command you to give Ariela the email from Lizabeth. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2093,"cells":{"history_episodes":{"kind":"string","value":"{click,17,} I command you to give Ariela the email from Lizabeth.
, "},"instruction":{"kind":"string","value":"I command you to give Ariela the email from Lizabeth. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":17,"string":"17"},"keydown_text":{"kind":"string","value":"ariela"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2094,"cells":{"history_episodes":{"kind":"string","value":" find Vivyan mail and reply with a \"Ipsum, quam odio ultricies.\"
, "},"instruction":{"kind":"string","value":"find Vivyan mail and reply with a \"Ipsum, quam odio ultricies.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2095,"cells":{"history_episodes":{"kind":"string","value":"{click,8,} find Vivyan mail and reply with a \"Ipsum, quam odio ultricies.\"
, "},"instruction":{"kind":"string","value":"find Vivyan mail and reply with a \"Ipsum, quam odio ultricies.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":8,"string":"8"},"keydown_text":{"kind":"string","value":"ipsum, quam odio ultricies"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2096,"cells":{"history_episodes":{"kind":"string","value":" Send Email in primary from Beatrisa to Marris.
, "},"instruction":{"kind":"string","value":"Send Email in primary from Beatrisa to Marris. "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":36,"string":"36"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2097,"cells":{"history_episodes":{"kind":"string","value":"{click,36,} Send Email in primary from Beatrisa to Marris.
, "},"instruction":{"kind":"string","value":"Send Email in primary from Beatrisa to Marris. "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":36,"string":"36"},"keydown_text":{"kind":"string","value":"marris"},"subtask_completion":{"kind":"string","value":"stop"}}},{"rowIdx":2098,"cells":{"history_episodes":{"kind":"string","value":" Can you please respond in my primary email box to Caren and write \"Tellus arcu.\"
, "},"instruction":{"kind":"string","value":"Can you please respond in my primary email box to Caren and write \"Tellus arcu.\" "},"actions":{"kind":"string","value":"click"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"null"},"subtask_completion":{"kind":"string","value":"continue"}}},{"rowIdx":2099,"cells":{"history_episodes":{"kind":"string","value":"{click,4,} Can you please respond in my primary email box to Caren and write \"Tellus arcu.\"
, "},"instruction":{"kind":"string","value":"Can you please respond in my primary email box to Caren and write \"Tellus arcu.\" "},"actions":{"kind":"string","value":"keydown"},"refs":{"kind":"number","value":4,"string":"4"},"keydown_text":{"kind":"string","value":"tellus arcu."},"subtask_completion":{"kind":"string","value":"stop"}}}],"truncated":false,"partial":false},"paginationData":{"pageIndex":20,"numItemsPerPage":100,"numTotalItems":40186,"offset":2000,"length":100}},"jwt":"eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sImlhdCI6MTc1ODM2NDg2Miwic3ViIjoiL2RhdGFzZXRzL0x1Y2FzVGhpbC9taW5pd29iX3BsdXNwbHVzX2hpZXJhcmNoaWNhbF90cmFpbmluZ19hY3Rpb25zX2RyYWluIiwiZXhwIjoxNzU4MzY4NDYyLCJpc3MiOiJodHRwczovL2h1Z2dpbmdmYWNlLmNvIn0.8N06R-jjBO_Q3mlmXiOPQSPIJflaKYwr3z6W6vPRij8kBNiemTWViC7cmN70FL8tWeWxEC4tqk4EC4yAJaHaBA","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
{click,10,} Text Alyse "Est eget sagittis nisi." <body ref="9"><div id="wrap" ref="8"><div id="area" ref="1"><div id="reply" ref="15"><div id="reply-bar" ref="6"><span id="close-reply" ref="2"></span><span id="send-reply" ref="4"></span></div><div classes="reply-header" ref="3"><div classes="reply-info" ref="12"><label classes="reply-to" ref="13" text="to:"></label><span classes="reply-sender" ref="14" text="alyse"></span></div><div classes="reply-subject" ref="7"><label classes="reply-subj" ref="5" text="subject:"></label><t ref="-8" text="re: nisl venenatis."></t></div></div><div classes="reply-body" ref="11"><textarea id="reply-text" ref="10"></textarea></div></div></div></div></body>,
Text Alyse "Est eget sagittis nisi."
keydown
10
est eget sagittis nisi.
stop
Find the email from Rochella and forward it to Merilyn. <body ref="4"><div id="wrap" ref="9"><div id="area" ref="12"><div id="forward" ref="3"><div id="forward-bar" ref="2"><span id="close-forward" ref="8"></span><span id="send-forward" ref="1"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="10"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="5"><label ref="7" text="subject:"></label><t ref="-28" text="mauris, quis."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="11" value="in vitae ipsum viverra. scelerisque scelerisque nunc egestas nulla sed facilisis velit commodo in."></textarea></div></div></div></div></body>,
Find the email from Rochella and forward it to Merilyn.
click
6
null
continue
{click,6,} Find the email from Rochella and forward it to Merilyn. <body ref="4"><div id="wrap" ref="9"><div id="area" ref="12"><div id="forward" ref="3"><div id="forward-bar" ref="2"><span id="close-forward" ref="8"></span><span id="send-forward" ref="1"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="10"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="6"></input_text></div><div classes="forward-subject" ref="5"><label ref="7" text="subject:"></label><t ref="-30" text="mauris, quis."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="11" value="in vitae ipsum viverra. scelerisque scelerisque nunc egestas nulla sed facilisis velit commodo in."></textarea></div></div></div></div></body>,
Find the email from Rochella and forward it to Merilyn.
keydown
6
merilyn
stop
find Joleen mail and reply with a "Ornare. Ut." <body ref="11"><div id="wrap" ref="6"><div id="area" ref="2"><div id="reply" ref="15"><div id="reply-bar" ref="7"><span id="close-reply" ref="5"></span><span id="send-reply" ref="1"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="10"><label classes="reply-to" ref="14" text="to:"></label><span classes="reply-sender" ref="8" text="joleen"></span></div><div classes="reply-subject" ref="12"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-6" text="re: suspendisse."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
find Joleen mail and reply with a "Ornare. Ut."
click
4
null
continue
{click,4,} find Joleen mail and reply with a "Ornare. Ut." <body ref="11"><div id="wrap" ref="6"><div id="area" ref="2"><div id="reply" ref="15"><div id="reply-bar" ref="7"><span id="close-reply" ref="5"></span><span id="send-reply" ref="1"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="10"><label classes="reply-to" ref="14" text="to:"></label><span classes="reply-sender" ref="8" text="joleen"></span></div><div classes="reply-subject" ref="12"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-8" text="re: suspendisse."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
find Joleen mail and reply with a "Ornare. Ut."
keydown
4
omare. ut.
stop
forward Pearl\s last email to Hesther <body ref="3"><div id="wrap" ref="10"><div id="area" ref="14"><div id="forward" ref="11"><div id="forward-bar" ref="2"><span id="close-forward" ref="5"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="8"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="12"><label ref="1" text="subject:"></label><t ref="-12" text="bibendum risus."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="6" value="id nisl pharetra leo pulvinar pretium."></textarea></div></div></div></div></body>,
forward Pearl\s last email to Hesther
click
4
null
continue
{click,4,} forward Pearl\s last email to Hesther <body ref="3"><div id="wrap" ref="10"><div id="area" ref="14"><div id="forward" ref="11"><div id="forward-bar" ref="2"><span id="close-forward" ref="5"></span><span id="send-forward" ref="13"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="8"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="4"></input_text></div><div classes="forward-subject" ref="12"><label ref="1" text="subject:"></label><t ref="-14" text="bibendum risus."></t></div></div><div classes="forward-body" ref="9"><textarea id="forward-text" ref="6" value="id nisl pharetra leo pulvinar pretium."></textarea></div></div></div></div></body>,
forward Pearl\s last email to Hesther
keydown
4
her
stop
Forward email from Marjorie to Ara <body ref="71"><div id="wrap" ref="24"><div id="area" ref="46"><div id="forward" ref="82"><div id="forward-bar" ref="13"><span id="close-forward" ref="19"></span><span id="send-forward" ref="48"></span></div><div classes="forward-header" ref="53"><div classes="forward-info" ref="55"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="54"></input_text></div><div classes="forward-subject" ref="5"><label ref="31" text="subject:"></label><t ref="-6" text="orci libero."></t></div></div><div classes="forward-body" ref="26"><textarea id="forward-text" ref="23" value="facilisis blandit senectus tincidunt. maecenas. in donec fermentum elit id quam bibendum."></textarea></div></div></div></div></body>,
Forward email from Marjorie to Ara
click
54
null
continue
{click,54,} Forward email from Marjorie to Ara <body ref="71"><div id="wrap" ref="24"><div id="area" ref="46"><div id="forward" ref="82"><div id="forward-bar" ref="13"><span id="close-forward" ref="19"></span><span id="send-forward" ref="48"></span></div><div classes="forward-header" ref="53"><div classes="forward-info" ref="55"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="54"></input_text></div><div classes="forward-subject" ref="5"><label ref="31" text="subject:"></label><t ref="-8" text="orci libero."></t></div></div><div classes="forward-body" ref="26"><textarea id="forward-text" ref="23" value="facilisis blandit senectus tincidunt. maecenas. in donec fermentum elit id quam bibendum."></textarea></div></div></div></div></body>,
Forward email from Marjorie to Ara
keydown
54
ara
stop
Please find that email from Mirna and forward to by email to Rebecka. <body ref="35"><div id="wrap" ref="42"><div id="area" ref="38"><div id="forward" ref="89"><div id="forward-bar" ref="71"><span id="close-forward" ref="61"></span><span id="send-forward" ref="62"></span></div><div classes="forward-header" ref="15"><div classes="forward-info" ref="30"><label ref="70" text="to:"></label><input_text classes="forward-sender" ref="65"></input_text></div><div classes="forward-subject" ref="67"><label ref="29" text="subject:"></label><t ref="-6" text="cursus dis."></t></div></div><div classes="forward-body" ref="34"><textarea id="forward-text" ref="86" value="risus nisl. velit fusce enim. in aliquam. scelerisque fringilla."></textarea></div></div></div></div></body>,
Please find that email from Mirna and forward to by email to Rebecka.
click
65
null
continue
{click,65,} Please find that email from Mirna and forward to by email to Rebecka. <body ref="35"><div id="wrap" ref="42"><div id="area" ref="38"><div id="forward" ref="89"><div id="forward-bar" ref="71"><span id="close-forward" ref="61"></span><span id="send-forward" ref="62"></span></div><div classes="forward-header" ref="15"><div classes="forward-info" ref="30"><label ref="70" text="to:"></label><input_text classes="forward-sender" ref="65"></input_text></div><div classes="forward-subject" ref="67"><label ref="29" text="subject:"></label><t ref="-8" text="cursus dis."></t></div></div><div classes="forward-body" ref="34"><textarea id="forward-text" ref="86" value="risus nisl. velit fusce enim. in aliquam. scelerisque fringilla."></textarea></div></div></div></div></body>,
Please find that email from Mirna and forward to by email to Rebecka.
keydown
65
rebecka
stop
Send Nadeen\s email to Hesther. <body ref="24"><div id="wrap" ref="7"><div id="area" ref="34"><div id="forward" ref="9"><div id="forward-bar" ref="54"><span id="close-forward" ref="50"></span><span id="send-forward" ref="117"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="45"><label ref="63" text="to:"></label><input_text classes="forward-sender" ref="40"></input_text></div><div classes="forward-subject" ref="30"><label ref="68" text="subject:"></label><t ref="-6" text="felis. enim."></t></div></div><div classes="forward-body" ref="88"><textarea id="forward-text" ref="89" value="venenatis, dictumst tempor suspendisse. nulla morbi fermentum. amet nisl purus non tellus enim. neque."></textarea></div></div></div></div></body>,
Send Nadeen\s email to Hesther.
click
40
null
continue
{click,40,} Send Nadeen\s email to Hesther. <body ref="24"><div id="wrap" ref="7"><div id="area" ref="34"><div id="forward" ref="9"><div id="forward-bar" ref="54"><span id="close-forward" ref="50"></span><span id="send-forward" ref="117"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="45"><label ref="63" text="to:"></label><input_text classes="forward-sender" ref="40"></input_text></div><div classes="forward-subject" ref="30"><label ref="68" text="subject:"></label><t ref="-8" text="felis. enim."></t></div></div><div classes="forward-body" ref="88"><textarea id="forward-text" ref="89" value="venenatis, dictumst tempor suspendisse. nulla morbi fermentum. amet nisl purus non tellus enim. neque."></textarea></div></div></div></div></body>,
Send Nadeen\s email to Hesther.
keydown
40
hesther
stop
Forward most recent email from Angele to Ina. <body ref="31"><div id="wrap" ref="29"><div id="area" ref="52"><div id="forward" ref="53"><div id="forward-bar" ref="71"><span id="close-forward" ref="44"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="20"><label ref="59" text="to:"></label><input_text classes="forward-sender" ref="72"></input_text></div><div classes="forward-subject" ref="32"><label ref="24" text="subject:"></label><t ref="-6" text="congue."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="80" value="a tortor augue cras accumsan ultricies. cursus orci,. ullamcorper id suspendisse. lacus. quis."></textarea></div></div></div></div></body>,
Forward most recent email from Angele to Ina.
click
72
null
continue
{click,72,} Forward most recent email from Angele to Ina. <body ref="31"><div id="wrap" ref="29"><div id="area" ref="52"><div id="forward" ref="53"><div id="forward-bar" ref="71"><span id="close-forward" ref="44"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="20"><label ref="59" text="to:"></label><input_text classes="forward-sender" ref="72"></input_text></div><div classes="forward-subject" ref="32"><label ref="24" text="subject:"></label><t ref="-8" text="congue."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="80" value="a tortor augue cras accumsan ultricies. cursus orci,. ullamcorper id suspendisse. lacus. quis."></textarea></div></div></div></div></body>,
Forward most recent email from Angele to Ina.
keydown
72
ina
stop
Forward Cassondra the email from Hestia. <body ref="10"><div id="wrap" ref="9"><div id="area" ref="13"><div id="forward" ref="11"><div id="forward-bar" ref="3"><span id="close-forward" ref="14"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="4"><div classes="forward-info" ref="2"><label ref="7" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="6"><label ref="8" text="subject:"></label><t ref="-24" text="nunc."></t></div></div><div classes="forward-body" ref="12"><textarea id="forward-text" ref="1" value="turpis orci, lectus risus sit."></textarea></div></div></div></div></body>,
Forward Cassondra the email from Hestia.
click
15
null
stop
Please find my email from Lyndsay and forward it to Viki. <body ref="14"><div id="wrap" ref="15"><div id="area" ref="8"><div id="forward" ref="4"><div id="forward-bar" ref="13"><span id="close-forward" ref="9"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="12"><div classes="forward-info" ref="6"><label ref="7" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="10"><label ref="1" text="subject:"></label><t ref="-6" text="enim."></t></div></div><div classes="forward-body" ref="3"><textarea id="forward-text" ref="11" value="volutpat amet. sit. mi in lacus elementum integer tellus tellus urna."></textarea></div></div></div></div></body>,
Please find my email from Lyndsay and forward it to Viki.
click
5
null
continue
{click,5,} Please find my email from Lyndsay and forward it to Viki. <body ref="14"><div id="wrap" ref="15"><div id="area" ref="8"><div id="forward" ref="4"><div id="forward-bar" ref="13"><span id="close-forward" ref="9"></span><span id="send-forward" ref="2"></span></div><div classes="forward-header" ref="12"><div classes="forward-info" ref="6"><label ref="7" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="10"><label ref="1" text="subject:"></label><t ref="-8" text="enim."></t></div></div><div classes="forward-body" ref="3"><textarea id="forward-text" ref="11" value="volutpat amet. sit. mi in lacus elementum integer tellus tellus urna."></textarea></div></div></div></div></body>,
Please find my email from Lyndsay and forward it to Viki.
keydown
5
viki
stop
Locate Carmel\s email from today and send back "Eget.". <body ref="56"><div id="wrap" ref="17"><div id="area" ref="74"><div id="reply" ref="28"><div id="reply-bar" ref="20"><span id="close-reply" ref="32"></span><span id="send-reply" ref="6"></span></div><div classes="reply-header" ref="38"><div classes="reply-info" ref="46"><label classes="reply-to" ref="35" text="to:"></label><span classes="reply-sender" ref="44" text="carmel"></span></div><div classes="reply-subject" ref="37"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-6" text="re: eu sed."></t></div></div><div classes="reply-body" ref="16"><textarea id="reply-text" ref="30"></textarea></div></div></div></div></body>,
Locate Carmel\s email from today and send back "Eget.".
click
30
null
continue
{click,30,} Locate Carmel\s email from today and send back "Eget.". <body ref="56"><div id="wrap" ref="17"><div id="area" ref="74"><div id="reply" ref="28"><div id="reply-bar" ref="20"><span id="close-reply" ref="32"></span><span id="send-reply" ref="6"></span></div><div classes="reply-header" ref="38"><div classes="reply-info" ref="46"><label classes="reply-to" ref="35" text="to:"></label><span classes="reply-sender" ref="44" text="carmel"></span></div><div classes="reply-subject" ref="37"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-8" text="re: eu sed."></t></div></div><div classes="reply-body" ref="16"><textarea id="reply-text" ref="30"></textarea></div></div></div></div></body>,
Locate Carmel\s email from today and send back "Eget.".
keydown
30
eget
stop
Take Petronella\s email and give it to Gusta. <body ref="44"><div id="wrap" ref="67"><div id="area" ref="28"><div id="forward" ref="79"><div id="forward-bar" ref="5"><span id="close-forward" ref="48"></span><span id="send-forward" ref="68"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="72"><label ref="38" text="to:"></label><input_text classes="forward-sender" ref="55"></input_text></div><div classes="forward-subject" ref="52"><label ref="11" text="subject:"></label><t ref="-6" text="nulla."></t></div></div><div classes="forward-body" ref="53"><textarea id="forward-text" ref="73" value="donec dui turpis sed posuere."></textarea></div></div></div></div></body>,
Take Petronella\s email and give it to Gusta.
click
55
null
continue
{click,55,} Take Petronella\s email and give it to Gusta. <body ref="44"><div id="wrap" ref="67"><div id="area" ref="28"><div id="forward" ref="79"><div id="forward-bar" ref="5"><span id="close-forward" ref="48"></span><span id="send-forward" ref="68"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="72"><label ref="38" text="to:"></label><input_text classes="forward-sender" ref="55"></input_text></div><div classes="forward-subject" ref="52"><label ref="11" text="subject:"></label><t ref="-8" text="nulla."></t></div></div><div classes="forward-body" ref="53"><textarea id="forward-text" ref="73" value="donec dui turpis sed posuere."></textarea></div></div></div></div></body>,
Take Petronella\s email and give it to Gusta.
keydown
55
gusta
stop
forward the email from Annadiane to Janaya. <body ref="3"><div id="wrap" ref="55"><div id="area" ref="71"><div id="forward" ref="34"><div id="forward-bar" ref="27"><span id="close-forward" ref="88"></span><span id="send-forward" ref="30"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="25"><label ref="35" text="to:"></label><input_text classes="forward-sender" ref="79"></input_text></div><div classes="forward-subject" ref="68"><label ref="97" text="subject:"></label><t ref="-6" text="et."></t></div></div><div classes="forward-body" ref="18"><textarea id="forward-text" ref="54" value="potenti in sagittis adipiscing ac lacus in. placerat cursus tortor, turpis."></textarea></div></div></div></div></body>,
forward the email from Annadiane to Janaya.
click
79
null
continue
{click,79,} forward the email from Annadiane to Janaya. <body ref="3"><div id="wrap" ref="55"><div id="area" ref="71"><div id="forward" ref="34"><div id="forward-bar" ref="27"><span id="close-forward" ref="88"></span><span id="send-forward" ref="30"></span></div><div classes="forward-header" ref="13"><div classes="forward-info" ref="25"><label ref="35" text="to:"></label><input_text classes="forward-sender" ref="79"></input_text></div><div classes="forward-subject" ref="68"><label ref="97" text="subject:"></label><t ref="-30" text="et."></t></div></div><div classes="forward-body" ref="18"><textarea id="forward-text" ref="54" value="potenti in sagittis adipiscing ac lacus in. placerat cursus tortor, turpis."></textarea></div></div></div></div></body>,
forward the email from Annadiane to Janaya.
click
79
null
stop
Answer the new email from Jandy with "Arcu." <body ref="9"><div id="wrap" ref="7"><div id="area" ref="15"><div id="reply" ref="4"><div id="reply-bar" ref="13"><span id="close-reply" ref="11"></span><span id="send-reply" ref="2"></span></div><div classes="reply-header" ref="3"><div classes="reply-info" ref="1"><label classes="reply-to" ref="12" text="to:"></label><span classes="reply-sender" ref="14" text="jandy"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="6" text="subject:"></label><t ref="-6" text="re: aliquam."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Answer the new email from Jandy with "Arcu."
click
5
null
continue
{click,5,} Answer the new email from Jandy with "Arcu." <body ref="9"><div id="wrap" ref="7"><div id="area" ref="15"><div id="reply" ref="4"><div id="reply-bar" ref="13"><span id="close-reply" ref="11"></span><span id="send-reply" ref="2"></span></div><div classes="reply-header" ref="3"><div classes="reply-info" ref="1"><label classes="reply-to" ref="12" text="to:"></label><span classes="reply-sender" ref="14" text="jandy"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="6" text="subject:"></label><t ref="-8" text="re: aliquam."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Answer the new email from Jandy with "Arcu."
keydown
5
arcu
stop
Look for the email that Karissa wrote in this email app and forward it to Eleanor <body ref="21"><div id="wrap" ref="83"><div id="area" ref="77"><div id="forward" ref="17"><div id="forward-bar" ref="64"><span id="close-forward" ref="49"></span><span id="send-forward" ref="18"></span></div><div classes="forward-header" ref="23"><div classes="forward-info" ref="63"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="47"></input_text></div><div classes="forward-subject" ref="82"><label ref="36" text="subject:"></label><t ref="-6" text="adipiscing eget."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="19" value="blandit sed tristique pellentesque turpis tempus quis. neque enim."></textarea></div></div></div></div></body>,
Look for the email that Karissa wrote in this email app and forward it to Eleanor
click
47
null
continue
{click,47,} Look for the email that Karissa wrote in this email app and forward it to Eleanor <body ref="21"><div id="wrap" ref="83"><div id="area" ref="77"><div id="forward" ref="17"><div id="forward-bar" ref="64"><span id="close-forward" ref="49"></span><span id="send-forward" ref="18"></span></div><div classes="forward-header" ref="23"><div classes="forward-info" ref="63"><label ref="6" text="to:"></label><input_text classes="forward-sender" ref="47"></input_text></div><div classes="forward-subject" ref="82"><label ref="36" text="subject:"></label><t ref="-8" text="adipiscing eget."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="19" value="blandit sed tristique pellentesque turpis tempus quis. neque enim."></textarea></div></div></div></div></body>,
Look for the email that Karissa wrote in this email app and forward it to Eleanor
keydown
47
eleanor
stop
Send the email from Wandie to Odille. <body ref="14"><div id="wrap" ref="9"><div id="area" ref="3"><div id="forward" ref="8"><div id="forward-bar" ref="12"><span id="close-forward" ref="5"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="4"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="6"><label ref="1" text="subject:"></label><t ref="-6" text="viverra hac."></t></div></div><div classes="forward-body" ref="7"><textarea id="forward-text" ref="13" value="velit ultrices. pellentesque sed tortor sit porta adipiscing non, tortor."></textarea></div></div></div></div></body>,
Send the email from Wandie to Odille.
click
2
null
continue
{click,2,} Send the email from Wandie to Odille. <body ref="14"><div id="wrap" ref="9"><div id="area" ref="3"><div id="forward" ref="8"><div id="forward-bar" ref="12"><span id="close-forward" ref="5"></span><span id="send-forward" ref="11"></span></div><div classes="forward-header" ref="10"><div classes="forward-info" ref="4"><label ref="15" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="6"><label ref="1" text="subject:"></label><t ref="-8" text="viverra hac."></t></div></div><div classes="forward-body" ref="7"><textarea id="forward-text" ref="13" value="velit ultrices. pellentesque sed tortor sit porta adipiscing non, tortor."></textarea></div></div></div></div></body>,
Send the email from Wandie to Odille.
keydown
2
odille
stop
Find the Teddy email and reply, "Pharetra." <body ref="2"><div id="wrap" ref="10"><div id="area" ref="8"><div id="reply" ref="3"><div id="reply-bar" ref="11"><span id="close-reply" ref="15"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="9"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="6" text="teddy"></span></div><div classes="reply-subject" ref="1"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-6" text="re: at."></t></div></div><div classes="reply-body" ref="5"><textarea id="reply-text" ref="12"></textarea></div></div></div></div></body>,
Find the Teddy email and reply, "Pharetra."
click
12
null
continue
{click,12,} Find the Teddy email and reply, "Pharetra." <body ref="2"><div id="wrap" ref="10"><div id="area" ref="8"><div id="reply" ref="3"><div id="reply-bar" ref="11"><span id="close-reply" ref="15"></span><span id="send-reply" ref="7"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="9"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="6" text="teddy"></span></div><div classes="reply-subject" ref="1"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-8" text="re: at."></t></div></div><div classes="reply-body" ref="5"><textarea id="reply-text" ref="12"></textarea></div></div></div></div></body>,
Find the Teddy email and reply, "Pharetra."
keydown
12
pharetra
stop
Please send Anneliese a reply of "Tempus, elit, nibh pulvinar.". <body ref="9"><div id="wrap" ref="11"><div id="area" ref="1"><div id="reply" ref="2"><div id="reply-bar" ref="5"><span id="close-reply" ref="10"></span><span id="send-reply" ref="4"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="15"><label classes="reply-to" ref="8" text="to:"></label><span classes="reply-sender" ref="3" text="anneliese"></span></div><div classes="reply-subject" ref="14"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-6" text="re: sapien proin."></t></div></div><div classes="reply-body" ref="6"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
Please send Anneliese a reply of "Tempus, elit, nibh pulvinar.".
click
7
null
continue
{click,7,} Please send Anneliese a reply of "Tempus, elit, nibh pulvinar.". <body ref="9"><div id="wrap" ref="11"><div id="area" ref="1"><div id="reply" ref="2"><div id="reply-bar" ref="5"><span id="close-reply" ref="10"></span><span id="send-reply" ref="4"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="15"><label classes="reply-to" ref="8" text="to:"></label><span classes="reply-sender" ref="3" text="anneliese"></span></div><div classes="reply-subject" ref="14"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-28" text="re: sapien proin."></t></div></div><div classes="reply-body" ref="6"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
Please send Anneliese a reply of "Tempus, elit, nibh pulvinar.".
keydown
7
tempus, elit, nibh pulvinar.
stop
Please reply to Marnie\s email, "Vestibulum viverra nulla." <body ref="31"><div id="wrap" ref="20"><div id="area" ref="24"><div id="reply" ref="55"><div id="reply-bar" ref="4"><span id="close-reply" ref="64"></span><span id="send-reply" ref="49"></span></div><div classes="reply-header" ref="57"><div classes="reply-info" ref="39"><label classes="reply-to" ref="56" text="to:"></label><span classes="reply-sender" ref="54" text="marnie"></span></div><div classes="reply-subject" ref="63"><label classes="reply-subj" ref="23" text="subject:"></label><t ref="-6" text="re: in et."></t></div></div><div classes="reply-body" ref="33"><textarea id="reply-text" ref="43"></textarea></div></div></div></div></body>,
Please reply to Marnie\s email, "Vestibulum viverra nulla."
click
43
null
continue
{click,43,} Please reply to Marnie\s email, "Vestibulum viverra nulla." <body ref="31"><div id="wrap" ref="20"><div id="area" ref="24"><div id="reply" ref="55"><div id="reply-bar" ref="4"><span id="close-reply" ref="64"></span><span id="send-reply" ref="49"></span></div><div classes="reply-header" ref="57"><div classes="reply-info" ref="39"><label classes="reply-to" ref="56" text="to:"></label><span classes="reply-sender" ref="54" text="marnie"></span></div><div classes="reply-subject" ref="63"><label classes="reply-subj" ref="23" text="subject:"></label><t ref="-8" text="re: in et."></t></div></div><div classes="reply-body" ref="33"><textarea id="reply-text" ref="43"></textarea></div></div></div></div></body>,
Please reply to Marnie\s email, "Vestibulum viverra nulla."
keydown
43
vestibulum viverra nulla
stop
Let me send the email that I received from Regan over to Tiphany. <body ref="30"><div id="wrap" ref="44"><div id="area" ref="6"><div id="forward" ref="50"><div id="forward-bar" ref="70"><span id="close-forward" ref="57"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="47"><div classes="forward-info" ref="13"><label ref="37" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="45"><label ref="53" text="subject:"></label><t ref="-6" text="tellus platea."></t></div></div><div classes="forward-body" ref="16"><textarea id="forward-text" ref="18" value="id dui blandit est eu. arcu facilisis dignissim sagittis."></textarea></div></div></div></div></body>,
Let me send the email that I received from Regan over to Tiphany.
click
2
null
continue
{click,2,} Let me send the email that I received from Regan over to Tiphany. <body ref="30"><div id="wrap" ref="44"><div id="area" ref="6"><div id="forward" ref="50"><div id="forward-bar" ref="70"><span id="close-forward" ref="57"></span><span id="send-forward" ref="10"></span></div><div classes="forward-header" ref="47"><div classes="forward-info" ref="13"><label ref="37" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="45"><label ref="53" text="subject:"></label><t ref="-8" text="tellus platea."></t></div></div><div classes="forward-body" ref="16"><textarea id="forward-text" ref="18" value="id dui blandit est eu. arcu facilisis dignissim sagittis."></textarea></div></div></div></div></body>,
Let me send the email that I received from Regan over to Tiphany.
keydown
2
tiphany
stop
Find the Fifi email and tell her, "Proin." <body ref="13"><div id="wrap" ref="11"><div id="area" ref="6"><div id="reply" ref="7"><div id="reply-bar" ref="2"><span id="close-reply" ref="3"></span><span id="send-reply" ref="15"></span></div><div classes="reply-header" ref="14"><div classes="reply-info" ref="1"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="8" text="fifi"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="9" text="subject:"></label><t ref="-6" text="re: sodales."></t></div></div><div classes="reply-body" ref="12"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Find the Fifi email and tell her, "Proin."
click
5
null
continue
{click,5,} Find the Fifi email and tell her, "Proin." <body ref="13"><div id="wrap" ref="11"><div id="area" ref="6"><div id="reply" ref="7"><div id="reply-bar" ref="2"><span id="close-reply" ref="3"></span><span id="send-reply" ref="15"></span></div><div classes="reply-header" ref="14"><div classes="reply-info" ref="1"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="8" text="fifi"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="9" text="subject:"></label><t ref="-8" text="re: sodales."></t></div></div><div classes="reply-body" ref="12"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Find the Fifi email and tell her, "Proin."
keydown
5
proin.
stop
forward any email from Gaby to Coretta <body ref="82"><div id="wrap" ref="40"><div id="area" ref="37"><div id="forward" ref="56"><div id="forward-bar" ref="3"><span id="close-forward" ref="21"></span><span id="send-forward" ref="20"></span></div><div classes="forward-header" ref="47"><div classes="forward-info" ref="5"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="65"><label ref="44" text="subject:"></label><t ref="-6" text="pellentesque."></t></div></div><div classes="forward-body" ref="42"><textarea id="forward-text" ref="69" value="auctor. etiam quisque aliquet lobortis ligula lacinia in viverra dolor. quis proin."></textarea></div></div></div></div></body>,
forward any email from Gaby to Coretta
click
2
null
continue
{click,2,} forward any email from Gaby to Coretta <body ref="82"><div id="wrap" ref="40"><div id="area" ref="37"><div id="forward" ref="56"><div id="forward-bar" ref="3"><span id="close-forward" ref="21"></span><span id="send-forward" ref="20"></span></div><div classes="forward-header" ref="47"><div classes="forward-info" ref="5"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="2"></input_text></div><div classes="forward-subject" ref="65"><label ref="44" text="subject:"></label><t ref="-8" text="pellentesque."></t></div></div><div classes="forward-body" ref="42"><textarea id="forward-text" ref="69" value="auctor. etiam quisque aliquet lobortis ligula lacinia in viverra dolor. quis proin."></textarea></div></div></div></div></body>,
forward any email from Gaby to Coretta
keydown
2
coretta
stop
Find Zarah\s e-mail and reply with the words "Bibendum." <body ref="19"><div id="wrap" ref="18"><div id="area" ref="8"><div id="reply" ref="9"><div id="reply-bar" ref="40"><span id="close-reply" ref="7"></span><span id="send-reply" ref="22"></span></div><div classes="reply-header" ref="17"><div classes="reply-info" ref="10"><label classes="reply-to" ref="20" text="to:"></label><span classes="reply-sender" ref="23" text="zarah"></span></div><div classes="reply-subject" ref="33"><label classes="reply-subj" ref="43" text="subject:"></label><t ref="-6" text="re: id faucibus."></t></div></div><div classes="reply-body" ref="45"><textarea id="reply-text" ref="30"></textarea></div></div></div></div></body>,
Find Zarah\s e-mail and reply with the words "Bibendum."
click
30
null
continue
{click,30,} Find Zarah\s e-mail and reply with the words "Bibendum." <body ref="19"><div id="wrap" ref="18"><div id="area" ref="8"><div id="reply" ref="9"><div id="reply-bar" ref="40"><span id="close-reply" ref="7"></span><span id="send-reply" ref="22"></span></div><div classes="reply-header" ref="17"><div classes="reply-info" ref="10"><label classes="reply-to" ref="20" text="to:"></label><span classes="reply-sender" ref="23" text="zarah"></span></div><div classes="reply-subject" ref="33"><label classes="reply-subj" ref="43" text="subject:"></label><t ref="-8" text="re: id faucibus."></t></div></div><div classes="reply-body" ref="45"><textarea id="reply-text" ref="30"></textarea></div></div></div></div></body>,
Find Zarah\s e-mail and reply with the words "Bibendum."
keydown
30
bibendum
stop
Tell Lilli I said "Ac." <body ref="5"><div id="wrap" ref="6"><div id="area" ref="15"><div id="reply" ref="8"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="4"><div classes="reply-info" ref="11"><label classes="reply-to" ref="13" text="to:"></label><span classes="reply-sender" ref="7" text="lilli"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-6" text="re: varius neque."></t></div></div><div classes="reply-body" ref="10"><textarea id="reply-text" ref="9"></textarea></div></div></div></div></body>,
Tell Lilli I said "Ac."
click
9
null
continue
{click,9,} Tell Lilli I said "Ac." <body ref="5"><div id="wrap" ref="6"><div id="area" ref="15"><div id="reply" ref="8"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="4"><div classes="reply-info" ref="11"><label classes="reply-to" ref="13" text="to:"></label><span classes="reply-sender" ref="7" text="lilli"></span></div><div classes="reply-subject" ref="3"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-8" text="re: varius neque."></t></div></div><div classes="reply-body" ref="10"><textarea id="reply-text" ref="9"></textarea></div></div></div></div></body>,
Tell Lilli I said "Ac."
keydown
9
ac.
stop
Please reply to Merrielle by saying "Et. Nunc,. Arcu at.". <body ref="8"><div id="wrap" ref="11"><div id="area" ref="13"><div id="reply" ref="3"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="2"></span></div><div classes="reply-header" ref="4"><div classes="reply-info" ref="6"><label classes="reply-to" ref="7" text="to:"></label><span classes="reply-sender" ref="15" text="merrielle"></span></div><div classes="reply-subject" ref="12"><label classes="reply-subj" ref="9" text="subject:"></label><t ref="-6" text="re: id."></t></div></div><div classes="reply-body" ref="10"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Please reply to Merrielle by saying "Et. Nunc,. Arcu at.".
click
5
null
continue
{click,5,} Please reply to Merrielle by saying "Et. Nunc,. Arcu at.". <body ref="8"><div id="wrap" ref="11"><div id="area" ref="13"><div id="reply" ref="3"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="2"></span></div><div classes="reply-header" ref="4"><div classes="reply-info" ref="6"><label classes="reply-to" ref="7" text="to:"></label><span classes="reply-sender" ref="15" text="merrielle"></span></div><div classes="reply-subject" ref="12"><label classes="reply-subj" ref="9" text="subject:"></label><t ref="-8" text="re: id."></t></div></div><div classes="reply-body" ref="10"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Please reply to Merrielle by saying "Et. Nunc,. Arcu at.".
keydown
5
et. nunc,. arcu at.
stop
In my inbox, there should be an email from Analiese, respond and tell him "Ac.". <body ref="7"><div id="wrap" ref="5"><div id="area" ref="4"><div id="reply" ref="6"><div id="reply-bar" ref="14"><span id="close-reply" ref="15"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="11"><div classes="reply-info" ref="9"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="8" text="analiese"></span></div><div classes="reply-subject" ref="2"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-6" text="re: tincidunt."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="10"></textarea></div></div></div></div></body>,
In my inbox, there should be an email from Analiese, respond and tell him "Ac.".
click
10
null
continue
{click,10,} In my inbox, there should be an email from Analiese, respond and tell him "Ac.". <body ref="7"><div id="wrap" ref="5"><div id="area" ref="4"><div id="reply" ref="6"><div id="reply-bar" ref="14"><span id="close-reply" ref="15"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="11"><div classes="reply-info" ref="9"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="8" text="analiese"></span></div><div classes="reply-subject" ref="2"><label classes="reply-subj" ref="3" text="subject:"></label><t ref="-8" text="re: tincidunt."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="10"></textarea></div></div></div></div></body>,
In my inbox, there should be an email from Analiese, respond and tell him "Ac.".
keydown
10
ac.
stop
Find the email from Edin and send it to Joly. <body ref="1"><div id="wrap" ref="12"><div id="area" ref="7"><div id="forward" ref="2"><div id="forward-bar" ref="13"><span id="close-forward" ref="4"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="14"><div classes="forward-info" ref="3"><label ref="9" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="8"><label ref="6" text="subject:"></label><t ref="-6" text="pulvinar."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="10" value="nunc montes, nunc fames risus, sed sit."></textarea></div></div></div></div></body>,
Find the email from Edin and send it to Joly.
click
11
null
continue
{click,11,} Find the email from Edin and send it to Joly. <body ref="1"><div id="wrap" ref="12"><div id="area" ref="7"><div id="forward" ref="2"><div id="forward-bar" ref="13"><span id="close-forward" ref="4"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="14"><div classes="forward-info" ref="3"><label ref="9" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="8"><label ref="6" text="subject:"></label><t ref="-8" text="pulvinar."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="10" value="nunc montes, nunc fames risus, sed sit."></textarea></div></div></div></div></body>,
Find the email from Edin and send it to Joly.
keydown
11
joly
stop
Could you find Neala\s email, then forward it to Kim? <body ref="23"><div id="wrap" ref="26"><div id="area" ref="20"><div id="forward" ref="43"><div id="forward-bar" ref="4"><span id="close-forward" ref="70"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="50"><label ref="2" text="to:"></label><input_text classes="forward-sender" ref="30"></input_text></div><div classes="forward-subject" ref="67"><label ref="49" text="subject:"></label><t ref="-6" text="platea."></t></div></div><div classes="forward-body" ref="48"><textarea id="forward-text" ref="56" value="sed fames faucibus ultricies id enim felis et habitant."></textarea></div></div></div></div></body>,
Could you find Neala\s email, then forward it to Kim?
click
30
null
continue
{click,30,} Could you find Neala\s email, then forward it to Kim? <body ref="23"><div id="wrap" ref="26"><div id="area" ref="20"><div id="forward" ref="43"><div id="forward-bar" ref="4"><span id="close-forward" ref="70"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="7"><div classes="forward-info" ref="50"><label ref="2" text="to:"></label><input_text classes="forward-sender" ref="30"></input_text></div><div classes="forward-subject" ref="67"><label ref="49" text="subject:"></label><t ref="-8" text="platea."></t></div></div><div classes="forward-body" ref="48"><textarea id="forward-text" ref="56" value="sed fames faucibus ultricies id enim felis et habitant."></textarea></div></div></div></div></body>,
Could you find Neala\s email, then forward it to Kim?
keydown
30
kim
stop
Respond to Guillema\s email with the text, "Nunc vestibulum.". <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="reply" ref="13"><div id="reply-bar" ref="6"><span id="close-reply" ref="5"></span><span id="send-reply" ref="9"></span></div><div classes="reply-header" ref="2"><div classes="reply-info" ref="14"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="7" text="guillema"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-6" text="re: sit."></t></div></div><div classes="reply-body" ref="3"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Respond to Guillema\s email with the text, "Nunc vestibulum.".
click
15
null
continue
{click,15,} Respond to Guillema\s email with the text, "Nunc vestibulum.". <body ref="12"><div id="wrap" ref="1"><div id="area" ref="11"><div id="reply" ref="13"><div id="reply-bar" ref="6"><span id="close-reply" ref="5"></span><span id="send-reply" ref="9"></span></div><div classes="reply-header" ref="2"><div classes="reply-info" ref="14"><label classes="reply-to" ref="4" text="to:"></label><span classes="reply-sender" ref="7" text="guillema"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-8" text="re: sit."></t></div></div><div classes="reply-body" ref="3"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Respond to Guillema\s email with the text, "Nunc vestibulum.".
keydown
15
nunc vestibulum
stop
Replay to email from Ulrikaumeko with text, "Purus integer nulla.". <body ref="43"><div id="wrap" ref="27"><div id="area" ref="24"><div id="reply" ref="36"><div id="reply-bar" ref="41"><span id="close-reply" ref="54"></span><span id="send-reply" ref="33"></span></div><div classes="reply-header" ref="40"><div classes="reply-info" ref="46"><label classes="reply-to" ref="52" text="to:"></label><span classes="reply-sender" ref="12" text="ulrikaumeko"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="15" text="subject:"></label><t ref="-6" text="re: aliquet nibh."></t></div></div><div classes="reply-body" ref="11"><textarea id="reply-text" ref="55"></textarea></div></div></div></div></body>,
Replay to email from Ulrikaumeko with text, "Purus integer nulla.".
click
55
null
continue
{click,55,} Replay to email from Ulrikaumeko with text, "Purus integer nulla.". <body ref="43"><div id="wrap" ref="27"><div id="area" ref="24"><div id="reply" ref="36"><div id="reply-bar" ref="41"><span id="close-reply" ref="54"></span><span id="send-reply" ref="33"></span></div><div classes="reply-header" ref="40"><div classes="reply-info" ref="46"><label classes="reply-to" ref="52" text="to:"></label><span classes="reply-sender" ref="12" text="ulrikaumeko"></span></div><div classes="reply-subject" ref="8"><label classes="reply-subj" ref="15" text="subject:"></label><t ref="-8" text="re: aliquet nibh."></t></div></div><div classes="reply-body" ref="11"><textarea id="reply-text" ref="55"></textarea></div></div></div></div></body>,
Replay to email from Ulrikaumeko with text, "Purus integer nulla.".
keydown
55
purus integer nulla.
stop
Will you find the email from Antoinette and forward it to Claudie? <body ref="2"><div id="wrap" ref="6"><div id="area" ref="9"><div id="forward" ref="15"><div id="forward-bar" ref="12"><span id="close-forward" ref="10"></span><span id="send-forward" ref="4"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="11"><label ref="7" text="to:"></label><input_text classes="forward-sender" ref="1"></input_text></div><div classes="forward-subject" ref="8"><label ref="13" text="subject:"></label><t ref="-6" text="in ut."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="5" value="massa vulputate in vulputate. non turpis."></textarea></div></div></div></div></body>,
Will you find the email from Antoinette and forward it to Claudie?
click
1
null
continue
{click,1,} Will you find the email from Antoinette and forward it to Claudie? <body ref="2"><div id="wrap" ref="6"><div id="area" ref="9"><div id="forward" ref="15"><div id="forward-bar" ref="12"><span id="close-forward" ref="10"></span><span id="send-forward" ref="4"></span></div><div classes="forward-header" ref="3"><div classes="forward-info" ref="11"><label ref="7" text="to:"></label><input_text classes="forward-sender" ref="1"></input_text></div><div classes="forward-subject" ref="8"><label ref="13" text="subject:"></label><t ref="-8" text="in ut."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="5" value="massa vulputate in vulputate. non turpis."></textarea></div></div></div></div></body>,
Will you find the email from Antoinette and forward it to Claudie?
keydown
1
claudie
stop
Text "Netus in vitae." to Shell <body ref="12"><div id="wrap" ref="5"><div id="area" ref="3"><div id="reply" ref="13"><div id="reply-bar" ref="6"><span id="close-reply" ref="7"></span><span id="send-reply" ref="11"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="2"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="4" text="shell"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-6" text="re: pharetra. volutpat."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Text "Netus in vitae." to Shell
click
15
null
continue
{click,15,} Text "Netus in vitae." to Shell <body ref="12"><div id="wrap" ref="5"><div id="area" ref="3"><div id="reply" ref="13"><div id="reply-bar" ref="6"><span id="close-reply" ref="7"></span><span id="send-reply" ref="11"></span></div><div classes="reply-header" ref="9"><div classes="reply-info" ref="2"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="4" text="shell"></span></div><div classes="reply-subject" ref="10"><label classes="reply-subj" ref="14" text="subject:"></label><t ref="-8" text="re: pharetra. volutpat."></t></div></div><div classes="reply-body" ref="8"><textarea id="reply-text" ref="15"></textarea></div></div></div></div></body>,
Text "Netus in vitae." to Shell
keydown
15
netus in vitae
stop
Find the email from Ania and send it to Analise. <body ref="4"><div id="wrap" ref="1"><div id="area" ref="7"><div id="forward" ref="3"><div id="forward-bar" ref="2"><span id="close-forward" ref="8"></span><span id="send-forward" ref="9"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="13"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="12"><label ref="14" text="subject:"></label><t ref="-6" text="leo."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="6" value="posuere. lacinia. mi in quis facilisi."></textarea></div></div></div></div></body>,
Find the email from Ania and send it to Analise.
click
5
null
continue
{click,5,} Find the email from Ania and send it to Analise. <body ref="4"><div id="wrap" ref="1"><div id="area" ref="7"><div id="forward" ref="3"><div id="forward-bar" ref="2"><span id="close-forward" ref="8"></span><span id="send-forward" ref="9"></span></div><div classes="forward-header" ref="11"><div classes="forward-info" ref="13"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="5"></input_text></div><div classes="forward-subject" ref="12"><label ref="14" text="subject:"></label><t ref="-8" text="leo."></t></div></div><div classes="forward-body" ref="15"><textarea id="forward-text" ref="6" value="posuere. lacinia. mi in quis facilisi."></textarea></div></div></div></div></body>,
Find the email from Ania and send it to Analise.
keydown
5
analise
stop
Forward the email in the inbox app from Minerva to Luciana. <body ref="11"><div id="wrap" ref="9"><div id="area" ref="13"><div id="forward" ref="5"><div id="forward-bar" ref="4"><span id="close-forward" ref="7"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="6"><label ref="3" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="10"><label ref="15" text="subject:"></label><t ref="-6" text="erat."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="1" value="iaculis amet,. commodo sed ipsum sem cursus convallis rhoncus lacus. eget."></textarea></div></div></div></div></body>,
Forward the email in the inbox app from Minerva to Luciana.
click
12
null
continue
{click,12,} Forward the email in the inbox app from Minerva to Luciana. <body ref="11"><div id="wrap" ref="9"><div id="area" ref="13"><div id="forward" ref="5"><div id="forward-bar" ref="4"><span id="close-forward" ref="7"></span><span id="send-forward" ref="8"></span></div><div classes="forward-header" ref="2"><div classes="forward-info" ref="6"><label ref="3" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="10"><label ref="15" text="subject:"></label><t ref="-8" text="erat."></t></div></div><div classes="forward-body" ref="14"><textarea id="forward-text" ref="1" value="iaculis amet,. commodo sed ipsum sem cursus convallis rhoncus lacus. eget."></textarea></div></div></div></div></body>,
Forward the email in the inbox app from Minerva to Luciana.
keydown
12
luciana
stop
Can you email Lucilia and tell her "Sed. Eget." <body ref="58"><div id="wrap" ref="40"><div id="area" ref="67"><div id="reply" ref="37"><div id="reply-bar" ref="52"><span id="close-reply" ref="75"></span><span id="send-reply" ref="48"></span></div><div classes="reply-header" ref="46"><div classes="reply-info" ref="36"><label classes="reply-to" ref="58" text="to:"></label><span classes="reply-sender" ref="40" text="lucilia"></span></div><div classes="reply-subject" ref="67"><label classes="reply-subj" ref="33" text="subject:"></label><t ref="-6" text="re: sagittis, massa."></t></div></div><div classes="reply-body" ref="17"><textarea id="reply-text" ref="45"></textarea></div></div></div></div></body>,
Can you email Lucilia and tell her "Sed. Eget."
click
45
null
continue
{click,45,} Can you email Lucilia and tell her "Sed. Eget." <body ref="58"><div id="wrap" ref="40"><div id="area" ref="67"><div id="reply" ref="37"><div id="reply-bar" ref="52"><span id="close-reply" ref="75"></span><span id="send-reply" ref="48"></span></div><div classes="reply-header" ref="46"><div classes="reply-info" ref="36"><label classes="reply-to" ref="58" text="to:"></label><span classes="reply-sender" ref="40" text="lucilia"></span></div><div classes="reply-subject" ref="67"><label classes="reply-subj" ref="33" text="subject:"></label><t ref="-8" text="re: sagittis, massa."></t></div></div><div classes="reply-body" ref="17"><textarea id="reply-text" ref="45"></textarea></div></div></div></div></body>,
Can you email Lucilia and tell her "Sed. Eget."
keydown
45
sed. eget.
stop
Forward Alane\s email from yesterday to Arline. <body ref="55"><div id="wrap" ref="29"><div id="area" ref="34"><div id="forward" ref="12"><div id="forward-bar" ref="8"><span id="close-forward" ref="22"></span><span id="send-forward" ref="49"></span></div><div classes="forward-header" ref="33"><div classes="forward-info" ref="39"><label ref="27" text="to:"></label><input_text classes="forward-sender" ref="7"></input_text></div><div classes="forward-subject" ref="6"><label ref="15" text="subject:"></label><t ref="-52" text="laoreet."></t></div></div><div classes="forward-body" ref="5"><textarea id="forward-text" ref="4" value="arcu massa sagittis. porttitor dignissim euismod posuere. aliquam dolor, pellentesque. in."></textarea></div></div></div></div></body>,
Forward Alane\s email from yesterday to Arline.
click
4
null
stop
Tell Sasha I said "Ullamcorper." <body ref="9"><div id="wrap" ref="11"><div id="area" ref="8"><div id="reply" ref="3"><div id="reply-bar" ref="15"><span id="close-reply" ref="13"></span><span id="send-reply" ref="10"></span></div><div classes="reply-header" ref="6"><div classes="reply-info" ref="12"><label classes="reply-to" ref="14" text="to:"></label><span classes="reply-sender" ref="2" text="sasha"></span></div><div classes="reply-subject" ref="4"><label classes="reply-subj" ref="1" text="subject:"></label><t ref="-6" text="re: vitae."></t></div></div><div classes="reply-body" ref="7"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Tell Sasha I said "Ullamcorper."
click
5
null
continue
{click,5,} Tell Sasha I said "Ullamcorper." <body ref="9"><div id="wrap" ref="11"><div id="area" ref="8"><div id="reply" ref="3"><div id="reply-bar" ref="15"><span id="close-reply" ref="13"></span><span id="send-reply" ref="10"></span></div><div classes="reply-header" ref="6"><div classes="reply-info" ref="12"><label classes="reply-to" ref="14" text="to:"></label><span classes="reply-sender" ref="2" text="sasha"></span></div><div classes="reply-subject" ref="4"><label classes="reply-subj" ref="1" text="subject:"></label><t ref="-8" text="re: vitae."></t></div></div><div classes="reply-body" ref="7"><textarea id="reply-text" ref="5"></textarea></div></div></div></div></body>,
Tell Sasha I said "Ullamcorper."
keydown
5
ullamcorper
stop
reply to Aryn\s last email "Mauris euismod at." <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="reply" ref="9"><div id="reply-bar" ref="4"><span id="close-reply" ref="15"></span><span id="send-reply" ref="8"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="14"><label classes="reply-to" ref="12" text="to:"></label><span classes="reply-sender" ref="7" text="aryn"></span></div><div classes="reply-subject" ref="11"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-6" text="re: mi leo."></t></div></div><div classes="reply-body" ref="1"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
reply to Aryn\s last email "Mauris euismod at."
click
2
null
continue
{click,2,} reply to Aryn\s last email "Mauris euismod at." <body ref="5"><div id="wrap" ref="3"><div id="area" ref="6"><div id="reply" ref="9"><div id="reply-bar" ref="4"><span id="close-reply" ref="15"></span><span id="send-reply" ref="8"></span></div><div classes="reply-header" ref="13"><div classes="reply-info" ref="14"><label classes="reply-to" ref="12" text="to:"></label><span classes="reply-sender" ref="7" text="aryn"></span></div><div classes="reply-subject" ref="11"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-8" text="re: mi leo."></t></div></div><div classes="reply-body" ref="1"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
reply to Aryn\s last email "Mauris euismod at."
keydown
2
mauris euismod at.
stop
Let me send Ranee\s email to Cindi. <body ref="26"><div id="wrap" ref="6"><div id="area" ref="20"><div id="forward" ref="43"><div id="forward-bar" ref="7"><span id="close-forward" ref="21"></span><span id="send-forward" ref="39"></span></div><div classes="forward-header" ref="52"><div classes="forward-info" ref="47"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="46"><label ref="29" text="subject:"></label><t ref="-6" text="nibh massa."></t></div></div><div classes="forward-body" ref="51"><textarea id="forward-text" ref="31" value="viverra non. ultrices amet. nibh tortor nullam. integer. pulvinar. blandit ut in massa, blandit."></textarea></div></div></div></div></body>,
Let me send Ranee\s email to Cindi.
click
12
null
continue
{click,12,} Let me send Ranee\s email to Cindi. <body ref="26"><div id="wrap" ref="6"><div id="area" ref="20"><div id="forward" ref="43"><div id="forward-bar" ref="7"><span id="close-forward" ref="21"></span><span id="send-forward" ref="39"></span></div><div classes="forward-header" ref="52"><div classes="forward-info" ref="47"><label ref="10" text="to:"></label><input_text classes="forward-sender" ref="12"></input_text></div><div classes="forward-subject" ref="46"><label ref="29" text="subject:"></label><t ref="-8" text="nibh massa."></t></div></div><div classes="forward-body" ref="51"><textarea id="forward-text" ref="31" value="viverra non. ultrices amet. nibh tortor nullam. integer. pulvinar. blandit ut in massa, blandit."></textarea></div></div></div></div></body>,
Let me send Ranee\s email to Cindi.
keydown
12
cindi
stop
Take Morgana\s email and reply with "Purus, odio.". <body ref="10"><div id="wrap" ref="1"><div id="area" ref="11"><div id="reply" ref="5"><div id="reply-bar" ref="15"><span id="close-reply" ref="3"></span><span id="send-reply" ref="14"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="12"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="9" text="morgana"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="8" text="subject:"></label><t ref="-6" text="re: viverra."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
Take Morgana\s email and reply with "Purus, odio.".
click
2
null
continue
{click,2,} Take Morgana\s email and reply with "Purus, odio.". <body ref="10"><div id="wrap" ref="1"><div id="area" ref="11"><div id="reply" ref="5"><div id="reply-bar" ref="15"><span id="close-reply" ref="3"></span><span id="send-reply" ref="14"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="12"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="9" text="morgana"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="8" text="subject:"></label><t ref="-8" text="re: viverra."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="2"></textarea></div></div></div></div></body>,
Take Morgana\s email and reply with "Purus, odio.".
keydown
2
purus,odio
continue
{click,2,}{keydown,2,purus,odio} Take Morgana\s email and reply with "Purus, odio.". <body ref="10"><div id="wrap" ref="1"><div id="area" ref="11"><div id="reply" ref="5"><div id="reply-bar" ref="15"><span id="close-reply" ref="3"></span><span id="send-reply" ref="14"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="12"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="9" text="morgana"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="8" text="subject:"></label><t ref="-80" text="re: viverra."></t></div></div><div classes="reply-body" ref="4"><textarea id="reply-text" ref="2" value="purus,odio"></textarea></div></div></div></div></body>,
Take Morgana\s email and reply with "Purus, odio.".
click
2
null
stop
Please forward Lynnette\s email to Marge. <body ref="85"><div id="wrap" ref="93"><div id="area" ref="58"><div id="forward" ref="41"><div id="forward-bar" ref="59"><span id="close-forward" ref="92"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="20"><label ref="32" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="52"><label ref="73" text="subject:"></label><t ref="-6" text="habitasse."></t></div></div><div classes="forward-body" ref="66"><textarea id="forward-text" ref="64" value="purus faucibus quis suscipit volutpat. bibendum vitae ut elit quam velit senectus."></textarea></div></div></div></div></body>,
Please forward Lynnette\s email to Marge.
click
15
null
continue
{click,15,} Please forward Lynnette\s email to Marge. <body ref="85"><div id="wrap" ref="93"><div id="area" ref="58"><div id="forward" ref="41"><div id="forward-bar" ref="59"><span id="close-forward" ref="92"></span><span id="send-forward" ref="46"></span></div><div classes="forward-header" ref="18"><div classes="forward-info" ref="20"><label ref="32" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="52"><label ref="73" text="subject:"></label><t ref="-8" text="habitasse."></t></div></div><div classes="forward-body" ref="66"><textarea id="forward-text" ref="64" value="purus faucibus quis suscipit volutpat. bibendum vitae ut elit quam velit senectus."></textarea></div></div></div></div></body>,
Please forward Lynnette\s email to Marge.
keydown
15
marge
stop
Can you email Cariotta and tell her "Proin nulla." <body ref="2"><div id="wrap" ref="4"><div id="area" ref="12"><div id="search" ref="11"><div id="search-bar" ref="14"><div id="search-header" ref="7"><span ref="6"><input_text id="search-input" ref="3"></input_text></span></div></div><div id="results-header" ref="19"><h4 ref="18" text="results"></h4></div></div></div></div></body>,
Can you email Cariotta and tell her "Proin nulla."
click
3
null
continue
{click,3,} Can you email Cariotta and tell her "Proin nulla." <body ref="2"><div id="wrap" ref="4"><div id="area" ref="12"><div id="reply" ref="15"><div id="reply-bar" ref="1"><span id="close-reply" ref="8"></span><span id="send-reply" ref="22"></span></div><div classes="reply-header" ref="21"><div classes="reply-info" ref="17"><label classes="reply-to" ref="9" text="to:"></label><span classes="reply-sender" ref="10" text="cariotta"></span></div><div classes="reply-subject" ref="16"><label classes="reply-subj" ref="20" text="subject:"></label><t ref="-12" text="re: viverra. nunc."></t></div></div><div classes="reply-body" ref="5"><textarea id="reply-text" ref="13"></textarea></div></div></div></div></body>,
Can you email Cariotta and tell her "Proin nulla."
click
13
null
continue
{click,3,}{click,13,} Can you email Cariotta and tell her "Proin nulla." <body ref="2"><div id="wrap" ref="4"><div id="area" ref="12"><div id="reply" ref="15"><div id="reply-bar" ref="1"><span id="close-reply" ref="8"></span><span id="send-reply" ref="22"></span></div><div classes="reply-header" ref="21"><div classes="reply-info" ref="17"><label classes="reply-to" ref="9" text="to:"></label><span classes="reply-sender" ref="10" text="cariotta"></span></div><div classes="reply-subject" ref="16"><label classes="reply-subj" ref="20" text="subject:"></label><t ref="-14" text="re: viverra. nunc."></t></div></div><div classes="reply-body" ref="5"><textarea id="reply-text" ref="13"></textarea></div></div></div></div></body>,
Can you email Cariotta and tell her "Proin nulla."
keydown
13
proin nulla.
stop
Find the Dani email and tell her, "Praesent ante tempus." <body ref="5"><div id="wrap" ref="13"><div id="area" ref="10"><div id="reply" ref="2"><div id="reply-bar" ref="15"><span id="close-reply" ref="9"></span><span id="send-reply" ref="8"></span></div><div classes="reply-header" ref="14"><div classes="reply-info" ref="6"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="3" text="dani"></span></div><div classes="reply-subject" ref="4"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-6" text="re: ac netus."></t></div></div><div classes="reply-body" ref="11"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
Find the Dani email and tell her, "Praesent ante tempus."
click
7
null
continue
{click,7,} Find the Dani email and tell her, "Praesent ante tempus." <body ref="5"><div id="wrap" ref="13"><div id="area" ref="10"><div id="reply" ref="2"><div id="reply-bar" ref="15"><span id="close-reply" ref="9"></span><span id="send-reply" ref="8"></span></div><div classes="reply-header" ref="14"><div classes="reply-info" ref="6"><label classes="reply-to" ref="1" text="to:"></label><span classes="reply-sender" ref="3" text="dani"></span></div><div classes="reply-subject" ref="4"><label classes="reply-subj" ref="12" text="subject:"></label><t ref="-8" text="re: ac netus."></t></div></div><div classes="reply-body" ref="11"><textarea id="reply-text" ref="7"></textarea></div></div></div></div></body>,
Find the Dani email and tell her, "Praesent ante tempus."
keydown
7
praesent ante tempus.
stop
Forward Alexia\s email that is in the email app to Kellie. <body ref="12"><div id="wrap" ref="4"><div id="area" ref="11"><div id="forward" ref="13"><div id="forward-bar" ref="2"><span id="close-forward" ref="5"></span><span id="send-forward" ref="3"></span></div><div classes="forward-header" ref="14"><div classes="forward-info" ref="6"><label ref="9" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="7"><label ref="10" text="subject:"></label><t ref="-6" text="elit."></t></div></div><div classes="forward-body" ref="1"><textarea id="forward-text" ref="8" value="leo pharetra, quisque mattis massa bibendum velit mollis in. nibh donec."></textarea></div></div></div></div></body>,
Forward Alexia\s email that is in the email app to Kellie.
click
15
null
continue
{click,15,} Forward Alexia\s email that is in the email app to Kellie. <body ref="12"><div id="wrap" ref="4"><div id="area" ref="11"><div id="forward" ref="13"><div id="forward-bar" ref="2"><span id="close-forward" ref="5"></span><span id="send-forward" ref="3"></span></div><div classes="forward-header" ref="14"><div classes="forward-info" ref="6"><label ref="9" text="to:"></label><input_text classes="forward-sender" ref="15"></input_text></div><div classes="forward-subject" ref="7"><label ref="10" text="subject:"></label><t ref="-8" text="elit."></t></div></div><div classes="forward-body" ref="1"><textarea id="forward-text" ref="8" value="leo pharetra, quisque mattis massa bibendum velit mollis in. nibh donec."></textarea></div></div></div></div></body>,
Forward Alexia\s email that is in the email app to Kellie.
keydown
15
kellie
stop
forward Fina\s email to Jeri <body ref="2"><div id="wrap" ref="8"><div id="area" ref="12"><div id="forward" ref="6"><div id="forward-bar" ref="1"><span id="close-forward" ref="4"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="9"><div classes="forward-info" ref="13"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="3"><label ref="7" text="subject:"></label><t ref="-36" text="gravida."></t></div></div><div classes="forward-body" ref="10"><textarea id="forward-text" ref="15" value="lacus leo egestas elementum, ullamcorper nulla."></textarea></div></div></div></div></body>,
forward Fina\s email to Jeri
click
11
null
continue
{click,11,} forward Fina\s email to Jeri <body ref="2"><div id="wrap" ref="8"><div id="area" ref="12"><div id="forward" ref="6"><div id="forward-bar" ref="1"><span id="close-forward" ref="4"></span><span id="send-forward" ref="5"></span></div><div classes="forward-header" ref="9"><div classes="forward-info" ref="13"><label ref="14" text="to:"></label><input_text classes="forward-sender" ref="11"></input_text></div><div classes="forward-subject" ref="3"><label ref="7" text="subject:"></label><t ref="-38" text="gravida."></t></div></div><div classes="forward-body" ref="10"><textarea id="forward-text" ref="15" value="lacus leo egestas elementum, ullamcorper nulla."></textarea></div></div></div></div></body>,
forward Fina\s email to Jeri
keydown
11
jeri
stop
Make sure the email written by Wynn is forwarded to Luise. <body ref="32"><div id="wrap" ref="58"><div id="area" ref="55"><div id="forward" ref="91"><div id="forward-bar" ref="63"><span id="close-forward" ref="77"></span><span id="send-forward" ref="34"></span></div><div classes="forward-header" ref="65"><div classes="forward-info" ref="51"><label ref="42" text="to:"></label><input_text classes="forward-sender" ref="94"></input_text></div><div classes="forward-subject" ref="50"><label ref="74" text="subject:"></label><t ref="-6" text="vitae."></t></div></div><div classes="forward-body" ref="22"><textarea id="forward-text" ref="76" value="enim id. eget adipiscing enim mattis cras. libero."></textarea></div></div></div></div></body>,
Make sure the email written by Wynn is forwarded to Luise.
click
94
null
continue
{click,94,} Make sure the email written by Wynn is forwarded to Luise. <body ref="32"><div id="wrap" ref="58"><div id="area" ref="55"><div id="forward" ref="91"><div id="forward-bar" ref="63"><span id="close-forward" ref="77"></span><span id="send-forward" ref="34"></span></div><div classes="forward-header" ref="65"><div classes="forward-info" ref="51"><label ref="42" text="to:"></label><input_text classes="forward-sender" ref="94"></input_text></div><div classes="forward-subject" ref="50"><label ref="74" text="subject:"></label><t ref="-8" text="vitae."></t></div></div><div classes="forward-body" ref="22"><textarea id="forward-text" ref="76" value="enim id. eget adipiscing enim mattis cras. libero."></textarea></div></div></div></div></body>,
Make sure the email written by Wynn is forwarded to Luise.
keydown
94
luise
stop
Can you please respond in my primary email box to Doll and write "Felis elementum." <body ref="31"><div id="wrap" ref="28"><div id="area" ref="8"><div id="reply" ref="27"><div id="reply-bar" ref="30"><span id="close-reply" ref="53"></span><span id="send-reply" ref="43"></span></div><div classes="reply-header" ref="23"><div classes="reply-info" ref="49"><label classes="reply-to" ref="51" text="to:"></label><span classes="reply-sender" ref="36" text="doll"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="10" text="subject:"></label><t ref="-16" text="re: sit."></t></div></div><div classes="reply-body" ref="41"><textarea id="reply-text" ref="40"></textarea></div></div></div></div></body>,
Can you please respond in my primary email box to Doll and write "Felis elementum."
click
40
null
stop
I command you to give Ariela the email from Lizabeth. <body ref="57"><div id="wrap" ref="60"><div id="area" ref="35"><div id="forward" ref="50"><div id="forward-bar" ref="49"><span id="close-forward" ref="16"></span><span id="send-forward" ref="7"></span></div><div classes="forward-header" ref="63"><div classes="forward-info" ref="37"><label ref="53" text="to:"></label><input_text classes="forward-sender" ref="17"></input_text></div><div classes="forward-subject" ref="19"><label ref="27" text="subject:"></label><t ref="-6" text="mi."></t></div></div><div classes="forward-body" ref="43"><textarea id="forward-text" ref="39" value="facilisis. mollis nec. tortor convallis. erat a. vulputate."></textarea></div></div></div></div></body>,
I command you to give Ariela the email from Lizabeth.
click
17
null
continue
{click,17,} I command you to give Ariela the email from Lizabeth. <body ref="57"><div id="wrap" ref="60"><div id="area" ref="35"><div id="forward" ref="50"><div id="forward-bar" ref="49"><span id="close-forward" ref="16"></span><span id="send-forward" ref="7"></span></div><div classes="forward-header" ref="63"><div classes="forward-info" ref="37"><label ref="53" text="to:"></label><input_text classes="forward-sender" ref="17"></input_text></div><div classes="forward-subject" ref="19"><label ref="27" text="subject:"></label><t ref="-8" text="mi."></t></div></div><div classes="forward-body" ref="43"><textarea id="forward-text" ref="39" value="facilisis. mollis nec. tortor convallis. erat a. vulputate."></textarea></div></div></div></div></body>,
I command you to give Ariela the email from Lizabeth.
keydown
17
ariela
stop
find Vivyan mail and reply with a "Ipsum, quam odio ultricies." <body ref="3"><div id="wrap" ref="4"><div id="area" ref="9"><div id="reply" ref="11"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="5"><div classes="reply-info" ref="7"><label classes="reply-to" ref="10" text="to:"></label><span classes="reply-sender" ref="15" text="vivyan"></span></div><div classes="reply-subject" ref="6"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-24" text="re: maecenas."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="8"></textarea></div></div></div></div></body>,
find Vivyan mail and reply with a "Ipsum, quam odio ultricies."
click
8
null
continue
{click,8,} find Vivyan mail and reply with a "Ipsum, quam odio ultricies." <body ref="3"><div id="wrap" ref="4"><div id="area" ref="9"><div id="reply" ref="11"><div id="reply-bar" ref="1"><span id="close-reply" ref="14"></span><span id="send-reply" ref="12"></span></div><div classes="reply-header" ref="5"><div classes="reply-info" ref="7"><label classes="reply-to" ref="10" text="to:"></label><span classes="reply-sender" ref="15" text="vivyan"></span></div><div classes="reply-subject" ref="6"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-26" text="re: maecenas."></t></div></div><div classes="reply-body" ref="13"><textarea id="reply-text" ref="8"></textarea></div></div></div></div></body>,
find Vivyan mail and reply with a "Ipsum, quam odio ultricies."
keydown
8
ipsum, quam odio ultricies
stop
Send Email in primary from Beatrisa to Marris. <body ref="73"><div id="wrap" ref="64"><div id="area" ref="28"><div id="forward" ref="95"><div id="forward-bar" ref="82"><span id="close-forward" ref="54"></span><span id="send-forward" ref="37"></span></div><div classes="forward-header" ref="33"><div classes="forward-info" ref="67"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="36"></input_text></div><div classes="forward-subject" ref="14"><label ref="78" text="subject:"></label><t ref="-6" text="morbi."></t></div></div><div classes="forward-body" ref="24"><textarea id="forward-text" ref="4" value="ut tristique tellus fringilla. tempor, placerat."></textarea></div></div></div></div></body>,
Send Email in primary from Beatrisa to Marris.
click
36
null
continue
{click,36,} Send Email in primary from Beatrisa to Marris. <body ref="73"><div id="wrap" ref="64"><div id="area" ref="28"><div id="forward" ref="95"><div id="forward-bar" ref="82"><span id="close-forward" ref="54"></span><span id="send-forward" ref="37"></span></div><div classes="forward-header" ref="33"><div classes="forward-info" ref="67"><label ref="12" text="to:"></label><input_text classes="forward-sender" ref="36"></input_text></div><div classes="forward-subject" ref="14"><label ref="78" text="subject:"></label><t ref="-8" text="morbi."></t></div></div><div classes="forward-body" ref="24"><textarea id="forward-text" ref="4" value="ut tristique tellus fringilla. tempor, placerat."></textarea></div></div></div></div></body>,
Send Email in primary from Beatrisa to Marris.
keydown
36
marris
stop
Can you please respond in my primary email box to Caren and write "Tellus arcu." <body ref="14"><div id="wrap" ref="5"><div id="area" ref="8"><div id="reply" ref="12"><div id="reply-bar" ref="1"><span id="close-reply" ref="3"></span><span id="send-reply" ref="11"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="10"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="15" text="caren"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-6" text="re: fames habitant."></t></div></div><div classes="reply-body" ref="9"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
Can you please respond in my primary email box to Caren and write "Tellus arcu."
click
4
null
continue
{click,4,} Can you please respond in my primary email box to Caren and write "Tellus arcu." <body ref="14"><div id="wrap" ref="5"><div id="area" ref="8"><div id="reply" ref="12"><div id="reply-bar" ref="1"><span id="close-reply" ref="3"></span><span id="send-reply" ref="11"></span></div><div classes="reply-header" ref="7"><div classes="reply-info" ref="10"><label classes="reply-to" ref="6" text="to:"></label><span classes="reply-sender" ref="15" text="caren"></span></div><div classes="reply-subject" ref="13"><label classes="reply-subj" ref="2" text="subject:"></label><t ref="-8" text="re: fames habitant."></t></div></div><div classes="reply-body" ref="9"><textarea id="reply-text" ref="4"></textarea></div></div></div></div></body>,
Can you please respond in my primary email box to Caren and write "Tellus arcu."
keydown
4
tellus arcu.
stop