Forum Discussion

kevin_kapell's avatar
kevin_kapell
Frequent Contributor
3 years ago
Solved

Need to setup TestedApp for Chrome

I need to setup TestApp for Chrome. I had it at one time but apparently in a recent code merge I lost it.

I have the following from an old support ticket:

chrome.exe --disable-web-security --user-data-dir=c:\users\user\tempChromeProfile\ --disable-site-isolation-trials

The TestedApp Settings are shown in the attached file.

I can call the TestedApp just fine using the following in my code:

var SelectedBrowser = eval(Project.Variables.TestBrowser);

if(SelectedBrowser == -3)
{
Log.Event("Opening Chrome via the TestedApp");
TestedApps.chrome.Run();
}
else
{
Browsers.Item(SelectedBrowser).Run();
}

4 Replies