diff --git a/test/integration/menu-bar.test.js b/test/integration/menu-bar.test.js
index ca1a4308b7a97c72a1f824e559b00a1e64859722..b1c3d9fc037259f8b86ac264feefe6fc78edd579 100644
--- a/test/integration/menu-bar.test.js
+++ b/test/integration/menu-bar.test.js
@@ -31,24 +31,24 @@ describe('Menu bar settings', () => {
         await findByXpath('//*[li[span[text()="New"]] and not(@data-tip="tooltip")]');
     });
 
-    test('File->Upload should be enabled', async () => {
+    test('File->Load should be enabled', async () => {
         await loadUri(uri);
         await clickXpath('//button[@title="Try It"]');
         await clickXpath(
             '//div[contains(@class, "menu-bar_menu-bar-item") and ' +
             'contains(@class, "menu-bar_hoverable")][span[text()="File"]]'
         );
-        await findByXpath('//*[li[span[text()="Upload from your computer"]] and not(@data-tip="tooltip")]');
+        await findByXpath('//*[li[span[text()="Load from your computer"]] and not(@data-tip="tooltip")]');
     });
 
-    test('File->Download should be enabled', async () => {
+    test('File->Save should be enabled', async () => {
         await loadUri(uri);
         await clickXpath('//button[@title="Try It"]');
         await clickXpath(
             '//div[contains(@class, "menu-bar_menu-bar-item") and ' +
             'contains(@class, "menu-bar_hoverable")][span[text()="File"]]'
         );
-        await findByXpath('//*[li[span[text()="Download to your computer"]] and not(@data-tip="tooltip")]');
+        await findByXpath('//*[li[span[text()="Save to your computer"]] and not(@data-tip="tooltip")]');
     });
 
     test('Share button should NOT be enabled', async () => {
diff --git a/test/integration/tutorials-shortcut.test.js b/test/integration/tutorials-shortcut.test.js
index 803e1e5aeeba5d4b39a43133d2bb16aa0f3001aa..21d3384a01df9d46e787c14af743801b6b8fa6c7 100644
--- a/test/integration/tutorials-shortcut.test.js
+++ b/test/integration/tutorials-shortcut.test.js
@@ -24,7 +24,7 @@ describe('Working with shortcut to Tutorials library', () => {
     test('opens with the Tutorial Library showing', async () => {
         await loadUri(uri);
         // make sure there is a tutorial visible that doesn't have a shortcut
-        await clickText('Switch costume');
+        await clickText('Make It Spin');
         await findByXpath('//div[contains(@class, "step-video")]');
     });