mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-11 13:11:01 +00:00
parent
0a4f92a5d0
commit
84324f52ae
@ -13,11 +13,8 @@ import mozilla.components.service.fxa.ServerConfig
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
object FxaServer {
|
object FxaServer {
|
||||||
const val CLIENT_ID = "a2270f727f45f648"
|
private const val CLIENT_ID = "a2270f727f45f648"
|
||||||
const val REDIRECT_URL = "https://accounts.stage.mozaws.net/oauth/success/$CLIENT_ID"
|
const val REDIRECT_URL = "urn:ietf:wg:oauth:2.0:oob:oauth-redirect-webchannel"
|
||||||
|
|
||||||
@Suppress("UNUSED_PARAMETER")
|
|
||||||
fun redirectUrl(context: Context) = REDIRECT_URL
|
|
||||||
|
|
||||||
@Suppress("UNUSED_PARAMETER")
|
@Suppress("UNUSED_PARAMETER")
|
||||||
fun config(context: Context): ServerConfig {
|
fun config(context: Context): ServerConfig {
|
||||||
|
@ -63,10 +63,12 @@ class SyncIntegrationTest {
|
|||||||
signInFxSync()
|
signInFxSync()
|
||||||
tapReturnToPreviousApp()
|
tapReturnToPreviousApp()
|
||||||
// Let's wait until homescreen is shown to go to three dot menu
|
// Let's wait until homescreen is shown to go to three dot menu
|
||||||
mDevice.waitNotNull(Until.findObjects(By.text("Open tabs")), TestAssetHelper.waitingTime)
|
TestAssetHelper.waitingTime
|
||||||
|
mDevice.waitNotNull(Until.findObjects(By.res("org.mozilla.fenix.debug:id/counter_root")))
|
||||||
homeScreen {
|
homeScreen {
|
||||||
}.openThreeDotMenu {
|
}.openThreeDotMenu {
|
||||||
}.openHistory { }
|
}.openHistory {
|
||||||
|
}
|
||||||
historyAfterSyncIsShown()
|
historyAfterSyncIsShown()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,8 +223,10 @@ class SyncIntegrationTest {
|
|||||||
mDevice.waitNotNull(Until.findObjects(By.text("Save")), TestAssetHelper.waitingTime)
|
mDevice.waitNotNull(Until.findObjects(By.text("Save")), TestAssetHelper.waitingTime)
|
||||||
mDevice.waitNotNull(Until.findObjects(By.text("Settings")), TestAssetHelper.waitingTime)
|
mDevice.waitNotNull(Until.findObjects(By.text("Settings")), TestAssetHelper.waitingTime)
|
||||||
|
|
||||||
// Wait until the Settings shows the account synced
|
/* Wait until the Settings shows the account synced */
|
||||||
mDevice.waitNotNull(Until.findObjects(By.text("Account")), TestAssetHelper.waitingTime)
|
mDevice.waitNotNull(Until.findObjects(By.text("Account")), TestAssetHelper.waitingTime)
|
||||||
|
mDevice.waitNotNull(Until.findObjects(By.res("org.mozilla.fenix.debug:id/email")), TestAssetHelper.waitingTime)
|
||||||
|
TestAssetHelper.waitingTime
|
||||||
// Go to Homescreen
|
// Go to Homescreen
|
||||||
mDevice.pressBack()
|
mDevice.pressBack()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user