diff --git a/test/integration/backpack.test.js b/test/integration/backpack.test.js
index 9694e67ba2cc4b3aca21d96a2c0145285ec0405b..cfc78613ccdb6ab4fa71d029842b7df26543b03c 100644
--- a/test/integration/backpack.test.js
+++ b/test/integration/backpack.test.js
@@ -24,7 +24,7 @@ describe('Working with the how-to library', () => {
 
     test('Backpack is "Coming Soon" without backpack host param', async () => {
         await loadUri(uri);
-        await clickXpath('//button[@title="tryit"]');
+        await clickXpath('//button[@title="Try It"]');
         // Check that the backpack header is visible and wrapped in a coming soon tooltip
         await clickText('Backpack', '*[@data-for="backpack-tooltip"]');
         const logs = await getLogs();
@@ -33,7 +33,7 @@ describe('Working with the how-to library', () => {
 
     test('Backpack can be expanded with backpack host param', async () => {
         await loadUri(`${uri}?backpack_host=some-value`);
-        await clickXpath('//button[@title="tryit"]');
+        await clickXpath('//button[@title="Try It"]');
 
         // Try activating the backpack from the costumes tab to make sure it isn't pushed off
         await clickText('Costumes');