How to use the_report_contains_text method of com.tngtech.jgiven.report.text.ThenPlainTextOutput class

Best JGiven code snippet using com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text

Source:PlainTextScenarioWriterTest.java Github

copy

Full Screen

...32 .a_report_model_with_one_scenario()33 .and().step_$_is_named( 1, "something happens" )34 .and().step_$_has_status( 1, status );35 when().the_plain_text_report_is_generated();36 then().the_report_contains_text( expectedText );37 }38 @Test39 public void cases_are_generated_in_text_reports() throws UnsupportedEncodingException {40 given()41 .a_report_model_with_one_scenario()42 .and().the_scenario_has_$_default_cases( 2 )43 .and().case_$_has_a_when_step_$_with_argument( 1, "some step", "someArg" );44 when().the_plain_text_report_is_generated();45 then().the_report_contains_text( "Case 1:" )46 .and().the_report_contains_text( "Case 2:" )47 .and().the_report_contains_text( "When some step someArg" );48 }49 @Test50 @FeatureDataTables51 @Issue( "#10" )52 public void arguments_are_correctly_printed_in_text_reports_for_data_tables() throws UnsupportedEncodingException {53 given()54 .a_report_model_with_one_scenario()55 .and().the_scenario_has_parameters( "param1" )56 .and().the_scenario_has_$_default_cases( 2 )57 .and().case_$_has_arguments( 1, "arg10" )58 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "some arg step", "arg10", "aArg" )59 .and().case_$_has_arguments( 2, "arg20" )60 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "some arg step", "arg20", "aArg" )61 .and().all_cases_have_a_step_$_with_argument( "some step", "someArg" );62 when().the_plain_text_report_is_generated();63 then().the_report_contains_text( "some step someArg" )64 .and().the_report_contains_text( "some arg step <param1>" );65 }66 @Test67 @FeatureDataTables68 @Issue( "#34" )69 public void data_tables_are_generated_correctly_in_text_reports() throws UnsupportedEncodingException {70 given()71 .a_report_model_with_one_scenario()72 .and().the_scenario_has_$_default_cases( 3 )73 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "some arg step", "43", "aArg1" )74 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "another arg step", "arg11", "aArg2" )75 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "some arg step", "4", "aArg1" )76 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "another arg step", "arg21", "aArg2" )77 .and().case_$_fails_with_error_message( 2, "Some Error" )78 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 3, "some arg step", "1234567", "aArg1" )79 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 3, "another arg step", "arg31", "aArg2" );80 when().the_plain_text_report_is_generated();81 then().the_report_contains_text( "<aArg1>" )82 .and().the_report_contains_text( "<aArg2>" )83 .and().the_report_contains_text( "\n" +84 " | # | aArg1 | aArg2 | Status |\n" +85 " +---+---------+-------+--------------------+\n" +86 " | 1 | 43 | arg11 | Success |\n" +87 " | 2 | 4 | arg21 | Failed: Some Error |\n" +88 " | 3 | 1234567 | arg31 | Success |\n" );89 }90 @Test91 @FeatureDataTables92 @Issue( "#104" )93 public void parameters_with_equal_values_but_different_formatting_result_in_different_placeholders()94 throws UnsupportedEncodingException {95 given()96 .a_report_model_with_one_scenario()97 .and().the_scenario_has_$_cases( 2 )98 .and().parameters( "aParam", "anotherParam" )99 .given().case_$_has_arguments( 1, "false", "false" )100 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "some arg step", "false", "anArg" )101 .with().formatted_value( "off" )102 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "another arg step", "false", "anotherArg" )103 .with().formatted_value( "is not" )104 .given().case_$_has_arguments( 2, "true", "true" )105 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "some arg step", "true", "anArg" )106 .with().formatted_value( "on" )107 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "another arg step", "true", "anotherArg" )108 .with().formatted_value( "is" );109 when().the_plain_text_report_is_generated();110 then().the_report_contains_text( "<anArg>" )111 .and().the_report_contains_text( "<anotherArg>" )112 .and().the_report_contains_text( "\n" +113 " | # | anArg | anotherArg | Status |\n" +114 " +---+-------+------------+---------+\n" +115 " | 1 | off | is not | Success |\n" +116 " | 2 | on | is | Success |\n" );117 }118 @Test119 @FeatureDataTables120 public void data_tables_are_generated_for_empty_strings() throws UnsupportedEncodingException {121 given()122 .a_report_model_with_one_scenario()123 .and().the_scenario_has_$_default_cases( 2 )124 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "some arg step", "non empty string", "arg" )125 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "some arg step", "", "arg" );126 when().the_plain_text_report_is_generated();127 then().the_report_contains_text( "<arg>" )128 .and().the_report_contains_text( "\n" +129 " | # | arg | Status |\n" +130 " +---+------------------+---------+\n" +131 " | 1 | non empty string | Success |\n" +132 " | 2 | | Success |\n" );133 }134 @Test135 @Issue( "#52" )136 @FeatureDataTables137 @DataProvider( {138 "VERTICAL, false",139 "HORIZONTAL, true",140 "NONE, false",141 "BOTH, true"142 } )143 public void table_annotations_at_parameters_lead_to_data_tables_in_the_report( Table.HeaderType headerType, boolean hasHeaderLine )144 throws UnsupportedEncodingException {145 given().a_report_model_with_one_scenario()146 .and().a_step_has_a_data_table_with_following_values( asList(147 asList( "foo", "bar" ),148 asList( "1", "a" ),149 asList( "2", "b" ) ) )150 .with().header_type_set_to( headerType );151 when().the_plain_text_report_is_generated();152 then().the_report_contains_text( "\n" +153 " | foo | bar |\n" +154 ( hasHeaderLine ? " +-----+-----+\n" : "" ) +155 " | 1 | a |\n" +156 " | 2 | b |\n" );157 }158 @Test159 @FeatureDataTables160 public void a_description_column_is_generated_if_cases_have_a_description() throws UnsupportedEncodingException {161 given().a_report_model_with_one_scenario()162 .and().the_scenario_has_$_default_cases( 2 )163 .and().case_$_has_description( 1, "some test description" )164 .and().case_$_has_description( 2, "another case" );165 when().the_plain_text_report_is_generated();166 then().the_report_contains_text( "\n" +167 " | # | Description | Status |\n" +168 " +---+-----------------------+---------+\n" +169 " | 1 | some test description | Success |\n" +170 " | 2 | another case | Success |\n" );171 }172 @Test173 @FeatureDataTables174 @Issue( "#152" )175 public void new_lines_in_data_tables_do_not_break_the_table_layout() throws UnsupportedEncodingException {176 given()177 .a_report_model_with_one_scenario()178 .and().the_scenario_has_$_default_cases( 2 )179 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 1, "some arg step", "1\n2", "aArg1" )180 .and().case_$_has_a_when_step_$_with_argument_$_and_argument_name_$( 2, "some arg step", "4", "aArg1" );181 when().the_plain_text_report_is_generated();182 then().the_report_contains_text( "<aArg1>" )183 .and().the_report_contains_text( "\n" +184 " | # | aArg1 | Status |\n" +185 " +---+-------+---------+\n" +186 " | 1 | 1 | Success |\n" +187 " | | 2 | |\n" +188 " | 2 | 4 | Success |\n" );189 }190}...

Full Screen

Full Screen

Source:ThenPlainTextOutput.java Github

copy

Full Screen

...7 @ExpectedScenarioState8 ReportModel reportModel;9 @ExpectedScenarioState10 String plainTextOutput;11 public ThenPlainTextOutput the_report_contains_text( String line ) {12 Assertions.assertThat( plainTextOutput.replace( System.getProperty("line.separator"), "\n" ) ).contains(line);13 return this;14 }15}...

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1package com.tngtech.jgiven.report.text;2import com.tngtech.jgiven.annotation.ExpectedScenarioState;3import com.tngtech.jgiven.report.model.ReportModel;4import com.tngtech.jgiven.report.text.PlainTextReportGenerator;5import org.junit.Test;6import static org.assertj.core.api.Assertions.assertThat;7public class ThenPlainTextOutput {8 ReportModel model;9 public void the_report_contains_text( String text ) {10 PlainTextReportGenerator generator = new PlainTextReportGenerator();11 String report = generator.generateReport( model );12 assertThat( report ).contains( text );13 }14}15package com.tngtech.jgiven.report.text;16import com.tngtech.jgiven.Stage;17import com.tngtech.jgiven.annotation.ScenarioStage;18import com.tngtech.jgiven.report.model.ReportModel;19import com.tngtech.jgiven.report.text.PlainTextReportGenerator;20public class WhenPlainTextReport extends Stage<WhenPlainTextReport> {21 ThenPlainTextOutput then;22 public WhenPlainTextReport the_report_is_generated() {23 PlainTextReportGenerator generator = new PlainTextReportGenerator();24 ReportModel model = new ReportModel();25 model.addScenarioCase( new ScenarioCaseModel() );26 then.model = model;27 return self();28 }29}30package com.tngtech.jgiven.report.text;31import com.tngtech.jgiven.Stage;32import com.tngtech.jgiven.annotation.ScenarioStage;33import com.tngtech.jgiven.report.model.ReportModel;34import com.tngtech.jgiven.report.text.PlainTextReportGenerator;35public class GivenPlainTextReport extends Stage<GivenPlainTextReport> {36 WhenPlainTextReport when;37 public GivenPlainTextReport a_scenario_with_a_step() {38 return self();39 }40}41package com.tngtech.jgiven.report.text;42import com.tngtech.jgiven.Stage;43import com.tngtech.jgiven.annotation.ScenarioState;44import com.tngtech.jgiven.report.model.ReportModel;45import com.tngtech.jgiven.report.text

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1package com.tngtech.jgiven.report.text;2import org.junit.Test;3public class ThenPlainTextOutputTest {4 public void test() {5 ThenPlainTextOutput then = new ThenPlainTextOutput();6 then.the_report_contains_text("This is a test");7 }8}9 at com.tngtech.jgiven.report.text.ThenPlainTextOutputTest.test(ThenPlainTextOutputTest.java:11)10@ScenarioStage ThenPlainTextOutput then;11package com.tngtech.jgiven;12import com.tngtech.jgiven.annotation.ScenarioStage;13import com.tngtech.jgiven.junit.ScenarioTest;14import com.tngtech.jgiven.report.text.ThenPlainTextOutput;15import org.junit.Test;16public class SampleTest extends ScenarioTest<SampleTest.GivenStage, SampleTest.WhenStage, SampleTest.ThenStage> {17 ThenPlainTextOutput then;18 public void test() {19 given().something();20 when().something_else();21 then.the_report_contains_text("This is a test");22 }23 public static class GivenStage extends Stage<GivenStage> {24 public GivenStage something() {25 return self();

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1package com.tngtech.jgiven.examples;2import com.tngtech.jgiven.Stage;3import com.tngtech.jgiven.annotation.ExpectedScenarioState;4import com.tngtech.jgiven.junit.SimpleScenarioTest;5import com.tngtech.jgiven.report.model.ReportModel;6import com.tngtech.jgiven.report.text.ThenPlainTextOutput;7import org.junit.Test;8import static org.assertj.core.api.Assertions.assertThat;9public class PlainTextOutputTest extends SimpleScenarioTest<PlainTextOutputTest.GivenSomeState, PlainTextOutputTest.WhenSomeAction, ThenPlainTextOutput> {10 public void the_report_contains_text() {11 given().some_state();12 when().some_action();13 then().the_report_contains_text( "Some State" );14 }15 public static class GivenSomeState extends Stage<GivenSomeState> {16 public GivenSomeState some_state() {17 return self();18 }19 }20 public static class WhenSomeAction extends Stage<WhenSomeAction> {21 ReportModel reportModel;22 public WhenSomeAction some_action() {23 return self();24 }25 }26}27package com.tngtech.jgiven.examples;28import com.tngtech.jgiven.Stage;29import com.tngtech.jgiven.annotation.ExpectedScenarioState;30import com.tngtech.jgiven.junit.SimpleScenarioTest;31import com.tngtech.jgiven.report.model.ReportModel;32import com.tngtech.jgiven.report.text.ThenPlainTextOutput;33import org.junit.Test;34import static org.assertj.core.api.Assertions.assertThat;35public class PlainTextOutputTest extends SimpleScenarioTest<PlainTextOutputTest.GivenSomeState, PlainTextOutputTest.WhenSomeAction, ThenPlainTextOutput> {36 public void the_report_does_not_contain_text() {37 given().some_state();38 when().some_action();39 then().the_report_does_not_contain_text( "Some State" );40 }41 public static class GivenSomeState extends Stage<GivenSomeState> {42 public GivenSomeState some_state() {43 return self();44 }45 }46 public static class WhenSomeAction extends Stage<WhenSomeAction> {

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.report.text.ThenPlainTextOutput;2import org.junit.Test;3import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;4public class 1 {5public void test() {6 ThenPlainTextOutput then = new ThenPlainTextOutput();7 then.the_report_contains_text("hello world");8}9}10import com.tngtech.jgiven.report.text.ThenPlainTextOutput;11import org.junit.Test;12import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;13public class 2 {14public void test() {15 ThenPlainTextOutput then = new ThenPlainTextOutput();16 then.the_report_contains_text("hello world");17}18}19import com.tngtech.jgiven.report.text.ThenPlainTextOutput;20import org.junit.Test;21import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;22public class 3 {23public void test() {24 ThenPlainTextOutput then = new ThenPlainTextOutput();25 then.the_report_contains_text("hello world");26}27}28import com.tngtech.jgiven.report.text.ThenPlainTextOutput;29import org.junit.Test;30import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;31public class 4 {32public void test() {33 ThenPlainTextOutput then = new ThenPlainTextOutput();34 then.the_report_contains_text("hello world");35}36}37import com.tngtech.jgiven.report.text.ThenPlainTextOutput;38import org.junit.Test;39import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;40public class 5 {41public void test() {42 ThenPlainTextOutput then = new ThenPlainTextOutput();43 then.the_report_contains_text("hello world");44}45}

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.junit.ScenarioTest;2import com.tngtech.jgiven.report.text.ThenPlainTextOutput;3import org.junit.Test;4public class PlainTextOutputTest extends ScenarioTest<GivenSomeState, WhenSomeAction, ThenPlainTextOutput> {5 public void report_contains_text() throws Exception {6 given().some_state();7 when().some_action();8 then().the_report_contains_text("Some text");9 }10}11import com.tngtech.jgiven.junit.ScenarioTest;12import com.tngtech.jgiven.report.text.ThenPlainTextOutput;13import org.junit.Test;14public class PlainTextOutputTest extends ScenarioTest<GivenSomeState, WhenSomeAction, ThenPlainTextOutput> {15 public void report_contains_text() throws Exception {16 given().some_state();17 when().some_action();18 then().the_report_contains_text("Some text");19 }20}21import com.tngtech.jgiven.junit.ScenarioTest;22import com.tngtech.jgiven.report.text.ThenPlainTextOutput;23import org.junit.Test;24public class PlainTextOutputTest extends ScenarioTest<GivenSomeState, WhenSomeAction, ThenPlainTextOutput> {25 public void report_contains_text() throws Exception {26 given().some_state();27 when().some_action();28 then().the_report_contains_text("Some text");29 }30}31import com.tngtech.jgiven.junit.ScenarioTest;32import com.tngtech.jgiven.report.text.ThenPlainTextOutput;33import org.junit.Test;34public class PlainTextOutputTest extends ScenarioTest<GivenSomeState, WhenSomeAction, ThenPlainTextOutput> {35 public void report_contains_text() throws Exception {36 given().some_state();37 when().some_action();38 then().the_report_contains_text("Some text");39 }40}

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.report.text.ThenPlainTextOutput;2import org.junit.Test;3import static org.assertj.core.api.Assertions.assertThat;4public class ThenPlainTextOutputTest extends ThenPlainTextOutput<ThenPlainTextOutputTest> {5 public void test_report_contains_text() {6 given().the_report_contains_text("jgiven");7 }8}

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1package com.tngtech.jgiven.report.text;2import java.io.File;3import java.io.IOException;4import org.junit.Test;5import com.tngtech.jgiven.report.ReportGenerator;6import com.tngtech.jgiven.report.ReportGeneratorTestBase;7public class ThenPlainTextOutputTest extends ReportGeneratorTestBase {8 public void the_report_contains_text() throws IOException {9 ReportGenerator generator = new ReportGenerator();10 generator.generateReport( getTestScenarioModel(), "target" );11 ThenPlainTextOutput then = new ThenPlainTextOutput();12 then.the_report_contains_text( "A Simple Test" );13 then.the_report_contains_text( "Given a simple test" );14 then.the_report_contains_text( "When it is run" );15 then.the_report_contains_text( "Then the report is written" );16 }17 public void the_report_does_not_contain_text() throws IOException {18 ReportGenerator generator = new ReportGenerator();19 generator.generateReport( getTestScenarioModel(), "target" );20 ThenPlainTextOutput then = new ThenPlainTextOutput();21 then.the_report_does_not_contain_text( "A Simple Test" );22 then.the_report_does_not_contain_text( "Given a simple test" );23 then.the_report_does_not_contain_text( "When it is run" );24 then.the_report_does_not_contain_text( "Then the report is written" );25 }26 public void the_report_contains_text_in_a_file() throws IOException {27 ReportGenerator generator = new ReportGenerator();28 generator.generateReport( getTestScenarioModel(), "target" );29 ThenPlainTextOutput then = new ThenPlainTextOutput();30 then.the_report_contains_text_in_a_file( "A Simple Test", new File( "target/report.txt" ) );31 then.the_report_contains_text_in_a_file( "Given a simple test", new File( "target/report.txt" ) );32 then.the_report_contains_text_in_a_file( "When it is run", new File( "target/report.txt" ) );33 then.the_report_contains_text_in_a_file( "Then the report is written", new File( "target/report.txt" ) );34 }35 public void the_report_does_not_contain_text_in_a_file() throws IOException {36 ReportGenerator generator = new ReportGenerator();37 generator.generateReport( getTestScenarioModel

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1import com.tngtech.jgiven.report.text.ThenPlainTextOutput;2import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;3public class 1 extends ThenPlainTextOutput<1> {4 public 1 the_report_contains_text( String text ) {5 return the_report_contains_text( text );6 }7}8import com.tngtech.jgiven.report.text.ThenPlainTextOutput;9import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_does_not_contain_text;10public class 2 extends ThenPlainTextOutput<2> {11 public 2 the_report_does_not_contain_text( String text ) {12 return the_report_does_not_contain_text( text );13 }14}15import com.tngtech.jgiven.report.text.ThenPlainTextOutput;16import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_contains_text;17public class 3 extends ThenPlainTextOutput<3> {18 public 3 the_report_contains_text( String text ) {19 return the_report_contains_text( text );20 }21}22import com.tngtech.jgiven.report.text.ThenPlainTextOutput;23import static com.tngtech.jgiven.report.text.ThenPlainTextOutput.the_report_does_not_contain_text;24public class 4 extends ThenPlainTextOutput<4> {25 public 4 the_report_does_not_contain_text( String text ) {26 return the_report_does_not_contain_text( text );27 }28}29import com.tngtech.jgiven.report.text.ThenPlainTextOutput;

Full Screen

Full Screen

the_report_contains_text

Using AI Code Generation

copy

Full Screen

1package com.tngtech.jgiven.report.text;2import com.tngtech.jgiven.annotation.ExpectedScenarioState;3import com.tngtech.jgiven.annotation.ScenarioState;4import com.tngtech.jgiven.junit.SimpleScenarioTest;5import com.tngtech.jgiven.report.model.ReportModel;6import com.tngtech.jgiven.report.text.PlainTextReportGenerator;7import com.tngtech.jgiven.report.text.PlainTextReportModelBuilder;8import org.junit.Test;9public class ThenPlainTextOutputTest extends SimpleScenarioTest<ThenPlainTextOutputTest.ThenPlainTextOutputTestStage> {10 private ReportModel reportModel;11 public void the_report_contains_text() throws Exception {12 PlainTextReportGenerator plainTextReportGenerator = new PlainTextReportGenerator();13 PlainTextReportModelBuilder plainTextReportModelBuilder = new PlainTextReportModelBuilder();14 String report = plainTextReportGenerator.generateReport(plainTextReportModelBuilder.buildReportModel(reportModel));15 assertThat(report).contains("text");16 }17 public static class ThenPlainTextOutputTestStage extends ThenPlainTextOutput<ThenPlainTextOutputTestStage> {18 }19}20package com.tngtech.jgiven.report.text;21import com.tngtech.jgiven.annotation.ExpectedScenarioState;22import com.tngtech.jgiven.annotation.ScenarioState;23import com.tngtech.jgiven.junit.SimpleScenarioTest;24import com.tngtech.jgiven.report.model.ReportModel;25import com.tngtech.jgiven.report.text.PlainTextReportGenerator;26import com.tngtech.jgiven.report.text.PlainTextReportModelBuilder;27import org.junit.Test;28public class ThenPlainTextOutputTest extends SimpleScenarioTest<ThenPlainTextOutputTest.ThenPlainTextOutputTestStage> {29 private ReportModel reportModel;30 public void the_report_contains_text() throws Exception {31 PlainTextReportGenerator plainTextReportGenerator = new PlainTextReportGenerator();32 PlainTextReportModelBuilder plainTextReportModelBuilder = new PlainTextReportModelBuilder();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run JGiven automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in ThenPlainTextOutput

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful