You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Team ,
Below is an example of integration test using latest integration test package:
I have a test in testrail for "User login with invalid user name" with testrailid=C3456 and projectid=9
I want to mark this test pass/fail based on the execution result of below test mentioned in testWidgets.
Please share how i can do that. I already checked the package provided by you , but facing difficulty how to use it. Please assist.
Getting started section explains quite clearly how to setup everything up.
First, you have to define the TestRail configuration.
TestRail.config(
username: 'USERNAME',
password: 'PASSWORD',
/// The URL that points to the test rail server => https://example.testrail.com
serverDomain: 'https://YOUR_SERVER.testrail.com',
)
Once you have the config in place, you should be able to access API directly.
Flow should be as follows:
Create a new test run with needed cases. You can find the reference here
Update case status after each executed case within a created test run.
Rest is your technical implementation, where and how you implement it. You can use the setUp() and tearDown() functions to build logic around it.
Hi Team ,
Below is an example of integration test using latest integration test package:
I have a test in testrail for "User login with invalid user name" with testrailid=C3456 and projectid=9
I want to mark this test pass/fail based on the execution result of below test mentioned in testWidgets.
Please share how i can do that. I already checked the package provided by you , but facing difficulty how to use it. Please assist.
`void main() {
HomeRobot homeRobot;
LoginRobot loginRobot;
final commonHelper = CommonHelper();
group('e2e test', () {
});
}`
Cheers
Am
The text was updated successfully, but these errors were encountered: