Change terminology from gallery to photo library (#2663)

* Update user-facing terminology from gallery to photo library

* Update terminology for devs to make the user-facing change easier to remember

* Update snapshots
This commit is contained in:
Amanda Bullington
2025-02-13 17:11:28 -08:00
committed by GitHub
parent 285612ed31
commit 400f118ad9
41 changed files with 209 additions and 222 deletions

View File

@@ -15,7 +15,7 @@ export default async function switchPowerMode() {
await waitFor( advancedInterfaceRadioButton ).toBeVisible().withTimeout( 10000 );
await advancedInterfaceRadioButton.tap();
// Tap the settings radio button for power user mode
const powerUserRadioButton = element( by.id( "all-observation-option" ) );
const powerUserRadioButton = element( by.id( "all-observation-options" ) );
await waitFor( powerUserRadioButton ).toBeVisible().withTimeout( 10000 );
await powerUserRadioButton.tap();
}