460 questions
1
vote
3
answers
2k
views
BDD GUI Automation
I've started a new role in my life. I was a front end web developer, but I've now been moved to testing web software, or more so, automating the testing of the software. I believe I am to pursue a ...
0
votes
0
answers
202
views
How to select value from a dropdown using JScript (not JavaScript) with TestComplete for a silverlight web application
I am using TestComplete to automate our regression for a silverlight web app, so we have multiple forms in the system and plenty of dropdowns and I am able to click on the dropdown combobox but unable ...
0
votes
1
answer
63
views
Can you increment results within a for loop?
Is there a way to add results in a for loop, while retaining the previous result so I can verify the entire list as items are added?
var listArray = new Array();
listArray[0] = item1 = "100??";
...
0
votes
1
answer
69
views
Can I use a variable string to call a method?
Here is what I am trying to do:
I have 25 queries to run that are in a separate file. They are all named by what they are returning. So if I want to loop through them, can I just use a variable to ...
1
vote
1
answer
1k
views
The specified object is not indexable
From the example given on smartbear's official website,
# The following routine checks the width and height attributes of
# IMG elements located on a web page.
def Test():
# Obtains the page ...
0
votes
1
answer
338
views
We are unable to spy the Table using object spy of test complete,
We are automating a desktop application (ININ) using Test complete. We are unable to spy the table using object spy of test complete. However while recording we are able to click that row, but we ...
1
vote
1
answer
194
views
Save an image present in PDF on local File System
This is my first experience of using PDFBox jar files. Also, I have recently started working on TestComplete. In short, all these things are new for me and I have been stuck on one issue for last few ...
0
votes
1
answer
234
views
How do I select a random value from an array in TestComplete?
I'm using JScript to test the character limit of a textbox, and also to make sure that numbers, characters, and special characters are accepted.
If I have an array like ("a", "2", "$", "D"), how can ...
0
votes
1
answer
544
views
Get Visual Studio Code to give intellisense for custom Javascript imports
I am writing automated testing scripts using TestComplete. TestComplete mostly supports Ecmascript 2015, but it has a few quirks that are causing intellisense to not work as I would expect.
Here is ...
0
votes
1
answer
43
views
TestComplete_JavaScripting_how to hide web url path while performing any operation for any object in script
I'm new to use Testcomplete , i'm using javascripts to automate my code, below are sample script ( converted one recorded first then converted into jscript) and in this scripts what i observe that ...
0
votes
2
answers
1k
views
How to scroll to a particular co-ordinate in Test Complete
I have spied a notepad and text box of a notepad contains a string which will be visible only if you scroll down.
Now I am trying to perform a single click there via passing a rectangle co-ordinate ...
0
votes
1
answer
170
views
Object mapping JScript TestComplete
Is there a way to write a single function to map an object based on the type of control?
For example, I do this for a Yes button:
function YesBtn() { return Aliases.[App].Find("MappedName", "*....
1
vote
1
answer
285
views
How to get only Textual Properties of an object inTest Complete?
I am trying to fetch textual properties of an object.In this case I have taken a notepad and trying to fetch properties via below snippet.But my problem is I am able to get all the properties ...
0
votes
1
answer
154
views
syntax error in test complete VBScript
I am new to test complete I am trying to use a generic method to create script but I am not able to combine browser and element
Function EditText (BrowserObject,EditboxName, EditValue)
BrowserObject....
-2
votes
1
answer
170
views
TestComplete Out of memory issue
The problem we face when we try to run our automation script on for long hours is in between the execution we face with “Out of Memory” issue.This issue is bcoz GDI Object” leak happening due to which ...
0
votes
1
answer
105
views
Click not working using variable in testcomplete
Click not working using variable in testcomplete as following.
var okbtn= "Aliases.LateralData_Applications_Dashboard.LoginForm.btnOK";
okbtn.ClickButton();
while direct click without variable is ...
0
votes
1
answer
335
views
How to traverse to a child object from a parent object using in test-complete tool?
I am automating a mobile application using TestComplete tool. I have to get the text of an object from the UI, but the object id keep on changing while change of values. So is there any option in test ...
0
votes
1
answer
145
views
Unable to fetch data from unsaved excel
I am accessing one application.Through application one excel file is getting open(not saving it in downloads,directly opening).Now I need to read data from the unsaved excel.Is it possible that ...
0
votes
1
answer
184
views
Variable used to store data from Excel file broken? JavaScript
I am currently developing a Keyword driven framework using JavaScript / TestComplete and have an Excel file which contains a step number, Description, Keyword, Locator and Data.
I am currently ...
1
vote
2
answers
927
views
How to get the full computer name using Test Complete
How to get the full computer name using Test Complete
For example,
Computer Name : RAMAKRISHNA
Full Computer Name : RAMAKRISHNA.XYZ.COM
Domain Name : XYZ.COM
Using TestComplete, I have tried the ...
0
votes
1
answer
304
views
How to enable the debug mode in TestExecute tool
I am executing tests through TestExecute and I want to enable the debug mode, i.e. I want it to pause at all the breakpoints which are set in the TestComplete project suite that is being executed ...
1
vote
1
answer
333
views
VSTS and Agents 2013
I'm trying to leverage SmartBear TestComplete for coded UI tests as part of my release process. I found a response stating TestComplete will not work with the 2015 test agents:
Running TestComplete ...
1
vote
3
answers
1k
views
How to find two web objects with the same properties using JavaScript for Test Automation
I have this piece of HTML codes
I need to find those 2 objects using JavaScript so I can click() it and write some text (Test Automation).
The issue is the id is dynamically generated, thus can't be ...
1
vote
1
answer
44
views
Is there a way to compare SQL Server 2012 results with an entire UI grid in TestComplete?
I'm using JScript and SQL Server 2012 to verify a grid in a UI.
Is there a way to compare SQL results to a single column? The entire grid is mapped, but nothing else. Even with the Map Object From ...
1
vote
2
answers
512
views
Start TestExecute from TeamCity
To test our desktop application we are using TestComplete/TestExecute.
We have a Master project that is started on a Management machine.
This Master project doesn't require interaction with the ...