Testcomplete 15 Can not launch edge
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2022
01:53 PM
05-31-2022
01:53 PM
Testcomplete 15 Can not launch edge
I am using Testcomplete version 15 with edge version 101.0.1210.53
I get unspecified error when I try the launch command.
tried the script
br = Browsers.Item(btEdge);
br.RunOptions = "-do-not-elevate";
br.Run();
- still get unspecified error.
- If I have edge already open my chrome testcases work and I can access the screen.
- I can not get the edge url page to work.
- any suggestions?
Labels:
- Labels:
-
Desktop Testing
-
Web Testing
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2022
08:14 AM
06-01-2022
08:14 AM
TestComplete does not yet support Edge above version 99
https://support.smartbear.com/testcomplete/docs/app-testing/web/supported-browsers/index.html
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2022
08:56 AM
06-06-2022
08:56 AM
Hi @loricotton!
If you are using Python as the default language for your IDE in TC, then we need to replace the parens on line 1 with brackets.
So this; br = Browsers.Item(btEdge);
Becomes; br = Browsers.Item[btEdge];
That should get you around the error launching Edge.
While we do not officially support this version of Edge yet, I am running 102 without any issues.
Regards,
Nick
Solutions Engineer @ SmartBear
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2022
09:25 AM
06-06-2022
09:25 AM
no I used Jscript
