Questions tagged [silktest]

Silk Test is Micro Focus's (previously Borland's) test automation solution for development, quality and business teams.

Silk Test is Micro Focus's (previously Borland's) test automation solution for development, quality and business teams.

https://www.microfocus.com/products/silk-portfolio/silk-test

101 questions
1
vote
1 answer

Data driven tests in Silk4Net

Is there any support in Silk4Net for data-driven tests? Should we code it from scratch or is there any support like Parameterized tests in JUnit?
Cagin Uludamar
  • 372
  • 1
  • 3
  • 16
1
vote
1 answer

Difference between getColumnHeaders(), getColumnNames() and getColumnTitles()

I am automating tests using Silk4J. For the SapTree [MicroFocus] class, there are the methods getColumnHeaders() [Microfocus], getColumnNames() [MicroFocus] and getColumnTitles() [MicroFocus]. The description of them is very similar and I'm trying…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
1
vote
1 answer

Check whether node in tree has been deleted

I am deleting nodes from a SapTree with the following code: SapTree tree; // initialized somewhere String key; // initialized somewhere String itemname; // initialized…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
1
vote
1 answer

How to construct a valid parameter for findNodeKeyByPath()?

To access items in a SAP GUI GuiTree object, most methods need a key which identifies the node. To get such a key, you need the function findNodeKeyByPath(). The description says: Return the node key for the given path (e.g. 2\1\2). path The node…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
1
vote
1 answer

Ignoring tests in Infinitest

I am automating system tests using Silk4J. Silk4J is based on JUnit. In addition I am testing my helper classes using pure JUnit tests. Now I need to tell Infinitest which tests shall be considered for running immediately. I will choose the unit…
Thomas Weller
  • 55,411
  • 20
  • 125
  • 222
1
vote
1 answer

Silk Test Open Agent doesn't stop automatically after tests execution

I have an issue with Silk Test's Open Agent (Silk Test 2011). I am using Silk4J for acceptance tests written in Java for a C++ client. It starts the tests properly but does not stop after the tests are completed. I have to do it manually so the job…
1
vote
3 answers

Silk Test doesn't identify WPF control hosted in Windows Forms host

I have a simple WPF user control: Test Test I am hosting this user control inside Windows Forms host. Silk Test identifies this entire user…
Ujjwal
  • 386
  • 3
  • 18
1
vote
1 answer

Cannot start the recorder in silk4j

I'm just stepping into the automation testing tool Silk4J. I followed the guide to start to record a test. However, every time I click the "Silk4J test", I get the same error: Failed to start recorder. Reason:Failed to start /recorder/Silk…
franksunnn
  • 147
  • 2
  • 9
1
vote
2 answers

How to pass random parameters to SilkTest Workbench or Classic Record&Play Scenario

I am new to SilkTest and I don't have any scripting background. What I need to do is to record some test cases and then play them to check my system. After getting used to it, I plan to learn scripting and dive into it, but first things first. What…
iso_9001_
  • 2,655
  • 6
  • 31
  • 47
1
vote
1 answer

How to prevent Visual Studio from killing any process after test execution

I am using Visual Studio 2012 MSTest framework with Silk4NET plug in. Every time when a test case finishes running, the Application Under Test is killed. This is REALLY annoying because this makes inspection harder in that I have to re-run the test…
FrozenLand
  • 259
  • 1
  • 4
  • 14
1
vote
1 answer

Silk Test - PressItem alternative with Open Agent

I need to move all my scripts from Classic to Open Agent and I faced with one problem and dont know how to fix. I have some TreeView where need to rightclick on selected item, before where used PressItem(TreeView.GetSelItem(),2) But now whole…
1
vote
1 answer

How to get the attribute value of a Java Swing application object in SilkTest?

Every Java Swing application has some attribute like caption, priorLabel, className, accessibleName and name. These are displayed in the Locator Spy; some with values and some without values. My question is: The way we have GetDomAttribute() method…
Praveen Pandey
  • 658
  • 3
  • 16
  • 32
1
vote
1 answer

How to automate a Java Swing application through Silk Test Classic?

I have no clue how to start automating a Java Swing application. Till date, I have worked only on web applications using Silk Test Classic with the Open Agent. I just need the following and then I am sure I can start on my own: A sample Java Swing…
Praveen Pandey
  • 658
  • 3
  • 16
  • 32
1
vote
1 answer

Integrating SilkCentral with Nexus

We currently use SilkCentral Test Manager (SCTM) integrated with our source control system via SCTM source control profiles. However, we would like to explore integrating with build artifacts checked into Maven's remote Nexus repository instead.…
Puneet Lamba
  • 755
  • 8
  • 15
1
vote
1 answer

Silk4Test dynamic record fields

Is it possible to dynamically get record fields in Silk4Test? Let's say we have this record: [-] type testRec is record [ ] string a [ ] int b [ ] string c [ ] string d And this list: list of string lsFields = {"a", "d"} Is there a…
xx77aBs
  • 4,678
  • 9
  • 53
  • 77