ContributionsMost RecentMost LikesSolutionsRe: "WaitForControlWithText" only works in Legacy Mode Hey AlexKaras thank you for your suggestion... I can't seem to be able to hit the element "android.widget.Toast" from within the TestComplete Script, though. But I guess the only way I haven't still tried is by executing a python script (Selenium) from the TestComplete Script... I will post the result if I am successful. Tks again. BR! Re: "WaitForControlWithText" only works in Legacy Mode No BIOS settings should be changed. This answer does not make any sense... Are there some kind of automtated answers on the forum? BR Re: "WaitForControlWithText" only works in Legacy Mode Hi ! Tks for your answer, but I don't understand it. On Android Studio (Java), I am actually using the Toast.makeText() method. What I'm asking is if there is a workaround on the TestComplete side. - I am currently testing by using Legacy Mode and function WaitForControlWithText. - I would like to use Mobile device cloud (BitBar and local Appium) instead of Legacy Mode; in this scenario,the function WaitForControlWithText does not work. - Is there a workaround to detect Android Toasts when using e Mobile device cloud (BitBar and local Appium) mode? Any comments are welcome. Thanks! "WaitForControlWithText" only works in Legacy Mode Hi all! I usually test an Android mobile app that displays several Toasts messages. I am fine connecting my phone to the laptop and using the function WaitForControlWithText in Legacy Mode. My question is: if I want to test this app by using BitBar instead, I'll need to change the Mobile Support type configuration from Legacy Mode to Mobile device cloud (BitBar and local Appium)... and therefore I will not be able to use the WaitForControlWithText function anymore... which is only supported in Legacy Mode. How can I check for Android-Toast values when using the Mobile Support type "Mobile device cloud (BitBar and local Appium)"? Is there any workaround? Tks in advance! BR, Damian.- Re: Issue launching Firefox mmmm ok copied; tks ffor the feedback. Do you know when the latest of FF version will be in scope ? Regards, Re: Issue launching Firefox Hi ! Latest versions in both cases: TC----> Version: 15.41.9.7 x86 FF----> 102.0.1 (64-bit) Tks for the help! Regards, Damian.- Issue launching Firefox Hi, I am having the attached problem when trying to execute a Script that Browses on Firefox. Tks for the help! The Script Code: function TEST_FF() { var BrowserItems, i; BrowserItems = new Array(1); BrowserItems[0] = Browsers.Item("firefox"); stUsername = "user_example"; for(i = 0; i < BrowserItems.length; i++) { let url = eval("CustomUtils.getTestURL()"); BrowserItems[i].Run(url); let page = Sys.Browser("*").Page("*"); // Campo obUsername let obUsername = page.FindElement("//input[@name='username']"); if (!strictEqual(obUsername, null)) { obUsername.Click(); obUsername.Keys(stUsername); Log.Message("Input obUsername: " + stUsername); Log.Picture(Sys.Desktop.ActiveWindow(), "Ingreso Username"); } else { Log.Error("\"obUsername\" no se encontrĂ³."); } } } Re: Error when trying to share a test log Hi all! Same issue here... does anybody know if there is an ETA for the solution ? Many tks, Damian.-