File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -110,13 +110,9 @@ export const defineFlakyTests = (testVariant: TestVariant, testWithBrowser: Test
110110 { isSavePassphraseChecked : false , isSavePassphraseHidden : false }
111111 ) ;
112112 await SettingsPageRecipe . toggleScreen ( settingsPage , 'additional' ) ;
113- const fingerprint = '4BD89F39E74396AE462B97EE825B8AE8B14CFC0E' ;
114- const myKeyFrame = await browser . newPage (
115- t ,
116- `chrome/settings/modules/my_key.htm?placement=settings&parentTabId=60%3A0&acctEmail=${ acctEmail } &fingerprint=${ fingerprint } `
117- ) ;
118- await myKeyFrame . waitAll ( [ '@container-shareable-pubkey-link' ] ) ;
119- expect ( await myKeyFrame . isElementPresent ( '@container-shareable-pubkey-link' ) ) . to . equal ( true ) ;
113+ await settingsPage . waitAndClick ( '@action-open-pubkey-page' ) ;
114+ const myKeyFrame = await settingsPage . getFrame ( [ 'my_key.htm' ] ) ;
115+ expect ( await myKeyFrame . isElementPresent ( '@container-shareable-pubkey-link' ) ) . to . be . true ;
120116 } )
121117 ) ;
122118
You can’t perform that action at this time.
0 commit comments