unit testing - Test Automation (Flow) -
my intention test functional flows of application. think best way testing ui steps of functional flow. (e.g : add item, after search , add pricing etc.). concern find best automation tool should support desktop application. have handheld experience of doing this. coding guy don't have experience in testing.
additionally: application huge application have connected oracle database. need clear database startup of testing. tool should support matter also.
programming language : c#
i found selenium (but web application), renorex , ibm rational functional tester.
is approach(test ui steps functional steps) correct? have 1 work on above tools or other best tools whcih support c# windows application.
i think nunit best text unit test in project. correct? according research google found result.
i'll try keep short. fit case
automation tool should support desktop application.
and
programming language : c#
will visualstudio's build in coded ui test. actions performed on desktop recorded. pause recording if performing actions may lead sensitive data being included in recording. when coded ui tests automated, have interact desktop when run them, unlike other automated tests.
as far try keep tests close test pyramid
the qa effort should acceptable , your
approach(test ui steps functional steps)
will correct , feasible. in general try avoid long , fragile tests, except e2e tests exercise (most business valuable) end-user journeys.
with c# should relatively easy drop oracle database your
need clear database startup of testing.
such db cleaning used fixture strategy. take @ persistent fixture. usage of such db fixtures can put work conditions ui tests expect/rely on (avoid ui setup tests), example - create available , applicable bonuses.
another way ui layer tests of .net based sikuli implementations:
Comments
Post a Comment