Getting issue to automate Frame element in web
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Getting issue to automate Frame element in web
Hi All,
I am getting problem to automation Frame element in web. In My application have a frame so I am unable to add checkpoints inside the frame.
Can anyone help me out this.
Thanks in advance.
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try going through this article, which may help you how to handle the frame objects using TestComplete.
let me know if this helped you to resolve the issue.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Like was mentioned above I would recommend launching chrome with a specific command line parameter. This can be done in anautomated fashion like this python script:
def RunBrowserDisableSecurity():
# Specify the required command-line key
Browsers.Item["chrome"].RunOptions = "--disable-web-security";
Browsers.Item["chrome"].Run();
Different script languages: https://support.smartbear.com/testcomplete/docs/reference/test-objects/controls/web/general/browseri...
Full list of runOptions: https://support.smartbear.com/testcomplete/docs/app-testing/web/general/preparing-browsers/chrome.ht...
