├── LearnER.java ├── README.md ├── The Testing Lab ├── A-Z of Testing Tips (Personal Advice).png ├── Communities.png ├── Effective Test Reporting.png ├── Heuristics for Effective Ideas.pdf ├── How should you approach management.png ├── LearnUpon-How-To-Leverage-The-70-20-10-Model-For-High-Performing-Employees.pdf ├── Rapid Software Testing Guide to Bug Reporting v1.5.pdf ├── Screenshot 2021-07-03 at 09.25.22.png ├── Screenshot 2021-07-04 at 10.43.33.png ├── Screenshot 2021-07-04 at 14.15.48.png ├── Systematic Product Modeling of PlaneFinder.jpeg ├── TEST Talks.png └── The Power Of Reputation.png ├── What every tester should know.pdf ├── agile ├── 2017-Scrum-Guide-US.pdf ├── 2018-Nexus-Guide-English_0.pdf ├── 2020-Scrum-Guide-US.pdf ├── Agile Testing, Scrum and eXtreme Programming.pdf ├── Agile-Manifesto.pdf ├── Getting Started with Agile Scrum Methodology_ The Complete Guide for Software Developers and Testers.pdf ├── LBG Scrum Master Student slideware (compressed) (1).pdf └── NexusGuide 2021.pdf ├── api testing └── RESTAPIAUTOMATION.pdf ├── data structure and algo ├── Data Structures and Algorithms in Java Fourth Edition (1).pdf ├── algorithm-book-by-karumanchi.pdf └── data_structures_and_algorithms_in_javatqw_darksiderg.pdf ├── java ├── (Part 1) Java 4 Selenium WebDriver.pdf ├── ._SCJP Sun Certified Programmer for Java 6-0071591060.pdf ├── 1_081205-145005-832.pdf ├── Effective.Java.2nd.Edition.May.2008.3000th.Release.pdf ├── Martin_-_Clean_Code_-_A_Handbook_of_Agile_Software_Craftsmanship.pdf ├── PREVIEW_JAVA_J2EE_BOOK.pdf ├── SCJP Sun Certified Programmer for Java 6-0071591060.pdf ├── ThinkingInJava.pdf └── still-effective.pdf ├── placement and interview ├── 13-11-16-09-39-18-rajkumar.pdf └── CrackCode.pdf ├── pom.xml ├── selenium └── Selenium WebDriver.pdf └── testing certifications ├── istqb ├── CTFL 2018 Sample Exam A v1.6 Answers.pdf ├── CTFL 2018 Sample Exam A v1.6 Questions.pdf ├── CTFL 2018 Sample Exam B v1.3 Answers.pdf ├── CTFL 2018 Sample Exam B v1.3 Questions.pdf ├── CTFL 2018 Sample Exam C v1.2 Answers.pdf ├── CTFL 2018 Sample Exam C v1.2 Questions.pdf ├── CTFL-2018-Accreditation-Guidelines-Evaluation.pdf ├── CTFL-2018-Course-Timing-Information.pdf ├── CTFL-2018-Exam-Structure-and-Rules0.pdf ├── CTFL-2018-Syllabus-2018-Overview.pdf ├── ISTQB-CTFL_Release-Notes_2018_V3.1.pdf ├── ISTQB-CTFL_Syllabus_2018_V3.1.pdf └── istqb_-foundations_of_software_testing.pdf ├── qai - cste └── CBOK.pdf └── qcflte └── Software Testing Training Manual_Ver_0.3.pdf /LearnER.java: -------------------------------------------------------------------------------- 1 | package ExtentReport.learnER; 2 | 3 | import org.openqa.selenium.WebDriver; 4 | import org.openqa.selenium.chrome.ChromeDriver; 5 | import org.testng.annotations.*; 6 | 7 | import com.aventstack.extentreports.ExtentReports; 8 | import com.aventstack.extentreports.reporter.ExtentHtmlReporter; 9 | 10 | public class LearnER { 11 | ExtentReports extent; 12 | @BeforeTest 13 | public void config() 14 | { 15 | //We need to class ExtentReport and 16 | //extentSparkReporter() : for creating reports, we need to give path where report file generated 17 | //to create directory via command 18 | String path= System.getProperty(("user.dir")+"\\reports\\index.html"); 19 | ExtentHtmlReporter sr=new ExtentHtmlReporter(path); 20 | sr.config().setReportName("My First Report"); 21 | sr.config().setDocumentTitle("Extent Report"); 22 | 23 | extent=new ExtentReports(); 24 | extent.attachReporter(sr); 25 | extent.setSystemInfo("Tester", "Radhika"); 26 | } 27 | 28 | @Test 29 | public void InitialDemo() 30 | { 31 | extent.createTest("Initial Test"); 32 | System.setProperty("webdriver.chrome.driver","D:\\Eclipse\\CourseWorkspace\\chromedriver.exe"); 33 | WebDriver driver=new ChromeDriver(); 34 | String url="www.google.com"; 35 | driver.get(url); 36 | //System.out.println(driver.getTitle()); 37 | 38 | extent.flush(); 39 | driver.quit(); 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This is Study Material For Agile,Scrum & Testing 2 | Feel free to add, share, download, read and collaborate 3 | -------------------------------------------------------------------------------- /The Testing Lab/A-Z of Testing Tips (Personal Advice).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/A-Z of Testing Tips (Personal Advice).png -------------------------------------------------------------------------------- /The Testing Lab/Communities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Communities.png -------------------------------------------------------------------------------- /The Testing Lab/Effective Test Reporting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Effective Test Reporting.png -------------------------------------------------------------------------------- /The Testing Lab/Heuristics for Effective Ideas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Heuristics for Effective Ideas.pdf -------------------------------------------------------------------------------- /The Testing Lab/How should you approach management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/How should you approach management.png -------------------------------------------------------------------------------- /The Testing Lab/LearnUpon-How-To-Leverage-The-70-20-10-Model-For-High-Performing-Employees.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/LearnUpon-How-To-Leverage-The-70-20-10-Model-For-High-Performing-Employees.pdf -------------------------------------------------------------------------------- /The Testing Lab/Rapid Software Testing Guide to Bug Reporting v1.5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Rapid Software Testing Guide to Bug Reporting v1.5.pdf -------------------------------------------------------------------------------- /The Testing Lab/Screenshot 2021-07-03 at 09.25.22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Screenshot 2021-07-03 at 09.25.22.png -------------------------------------------------------------------------------- /The Testing Lab/Screenshot 2021-07-04 at 10.43.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Screenshot 2021-07-04 at 10.43.33.png -------------------------------------------------------------------------------- /The Testing Lab/Screenshot 2021-07-04 at 14.15.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Screenshot 2021-07-04 at 14.15.48.png -------------------------------------------------------------------------------- /The Testing Lab/Systematic Product Modeling of PlaneFinder.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/Systematic Product Modeling of PlaneFinder.jpeg -------------------------------------------------------------------------------- /The Testing Lab/TEST Talks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/TEST Talks.png -------------------------------------------------------------------------------- /The Testing Lab/The Power Of Reputation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/The Testing Lab/The Power Of Reputation.png -------------------------------------------------------------------------------- /What every tester should know.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/What every tester should know.pdf -------------------------------------------------------------------------------- /agile/2017-Scrum-Guide-US.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/2017-Scrum-Guide-US.pdf -------------------------------------------------------------------------------- /agile/2018-Nexus-Guide-English_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/2018-Nexus-Guide-English_0.pdf -------------------------------------------------------------------------------- /agile/2020-Scrum-Guide-US.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/2020-Scrum-Guide-US.pdf -------------------------------------------------------------------------------- /agile/Agile Testing, Scrum and eXtreme Programming.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/Agile Testing, Scrum and eXtreme Programming.pdf -------------------------------------------------------------------------------- /agile/Agile-Manifesto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/Agile-Manifesto.pdf -------------------------------------------------------------------------------- /agile/Getting Started with Agile Scrum Methodology_ The Complete Guide for Software Developers and Testers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/Getting Started with Agile Scrum Methodology_ The Complete Guide for Software Developers and Testers.pdf -------------------------------------------------------------------------------- /agile/LBG Scrum Master Student slideware (compressed) (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/LBG Scrum Master Student slideware (compressed) (1).pdf -------------------------------------------------------------------------------- /agile/NexusGuide 2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/agile/NexusGuide 2021.pdf -------------------------------------------------------------------------------- /api testing/RESTAPIAUTOMATION.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/api testing/RESTAPIAUTOMATION.pdf -------------------------------------------------------------------------------- /data structure and algo/Data Structures and Algorithms in Java Fourth Edition (1).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/data structure and algo/Data Structures and Algorithms in Java Fourth Edition (1).pdf -------------------------------------------------------------------------------- /data structure and algo/algorithm-book-by-karumanchi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/data structure and algo/algorithm-book-by-karumanchi.pdf -------------------------------------------------------------------------------- /data structure and algo/data_structures_and_algorithms_in_javatqw_darksiderg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/data structure and algo/data_structures_and_algorithms_in_javatqw_darksiderg.pdf -------------------------------------------------------------------------------- /java/(Part 1) Java 4 Selenium WebDriver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/(Part 1) Java 4 Selenium WebDriver.pdf -------------------------------------------------------------------------------- /java/._SCJP Sun Certified Programmer for Java 6-0071591060.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/._SCJP Sun Certified Programmer for Java 6-0071591060.pdf -------------------------------------------------------------------------------- /java/1_081205-145005-832.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/1_081205-145005-832.pdf -------------------------------------------------------------------------------- /java/Effective.Java.2nd.Edition.May.2008.3000th.Release.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/Effective.Java.2nd.Edition.May.2008.3000th.Release.pdf -------------------------------------------------------------------------------- /java/Martin_-_Clean_Code_-_A_Handbook_of_Agile_Software_Craftsmanship.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/Martin_-_Clean_Code_-_A_Handbook_of_Agile_Software_Craftsmanship.pdf -------------------------------------------------------------------------------- /java/PREVIEW_JAVA_J2EE_BOOK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/PREVIEW_JAVA_J2EE_BOOK.pdf -------------------------------------------------------------------------------- /java/SCJP Sun Certified Programmer for Java 6-0071591060.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/SCJP Sun Certified Programmer for Java 6-0071591060.pdf -------------------------------------------------------------------------------- /java/ThinkingInJava.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/ThinkingInJava.pdf -------------------------------------------------------------------------------- /java/still-effective.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/java/still-effective.pdf -------------------------------------------------------------------------------- /placement and interview/13-11-16-09-39-18-rajkumar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/placement and interview/13-11-16-09-39-18-rajkumar.pdf -------------------------------------------------------------------------------- /placement and interview/CrackCode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/placement and interview/CrackCode.pdf -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 4.0.0 6 | 7 | ExtentReport 8 | learnER 9 | 0.0.1-SNAPSHOT 10 | 11 | learnER 12 | 13 | http://www.example.com 14 | 15 | 16 | UTF-8 17 | 1.7 18 | 1.7 19 | 20 | 21 | 22 | 23 | 24 | org.testng 25 | testng 26 | 6.9.6 27 | test 28 | 29 | 30 | 31 | org.seleniumhq.selenium 32 | selenium-chrome-driver 33 | 4.1.1 34 | 35 | 36 | 37 | com.aventstack 38 | extentreports 39 | 3.0.0 40 | 41 | 42 | 43 | junit 44 | junit 45 | 4.13.2 46 | test 47 | 48 | 49 | 50 | org.seleniumhq.selenium 51 | selenium-java 52 | 4.1.1 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | maven-clean-plugin 64 | 3.1.0 65 | 66 | 67 | 68 | maven-resources-plugin 69 | 3.0.2 70 | 71 | 72 | maven-compiler-plugin 73 | 3.8.0 74 | 75 | 76 | maven-surefire-plugin 77 | 2.22.1 78 | 79 | 80 | maven-jar-plugin 81 | 3.0.2 82 | 83 | 84 | maven-install-plugin 85 | 2.5.2 86 | 87 | 88 | maven-deploy-plugin 89 | 2.8.2 90 | 91 | 92 | 93 | maven-site-plugin 94 | 3.7.1 95 | 96 | 97 | maven-project-info-reports-plugin 98 | 3.0.0 99 | 100 | 101 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /selenium/Selenium WebDriver.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/selenium/Selenium WebDriver.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam A v1.6 Answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam A v1.6 Answers.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam A v1.6 Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam A v1.6 Questions.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam B v1.3 Answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam B v1.3 Answers.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam B v1.3 Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam B v1.3 Questions.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam C v1.2 Answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam C v1.2 Answers.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL 2018 Sample Exam C v1.2 Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL 2018 Sample Exam C v1.2 Questions.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL-2018-Accreditation-Guidelines-Evaluation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL-2018-Accreditation-Guidelines-Evaluation.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL-2018-Course-Timing-Information.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL-2018-Course-Timing-Information.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL-2018-Exam-Structure-and-Rules0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL-2018-Exam-Structure-and-Rules0.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/CTFL-2018-Syllabus-2018-Overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/CTFL-2018-Syllabus-2018-Overview.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/ISTQB-CTFL_Release-Notes_2018_V3.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/ISTQB-CTFL_Release-Notes_2018_V3.1.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/ISTQB-CTFL_Syllabus_2018_V3.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/ISTQB-CTFL_Syllabus_2018_V3.1.pdf -------------------------------------------------------------------------------- /testing certifications/istqb/istqb_-foundations_of_software_testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/istqb/istqb_-foundations_of_software_testing.pdf -------------------------------------------------------------------------------- /testing certifications/qai - cste/CBOK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/qai - cste/CBOK.pdf -------------------------------------------------------------------------------- /testing certifications/qcflte/Software Testing Training Manual_Ver_0.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anmolbagga/StudyMaterialForAgileAndTestingInAgile/aaa634dedd07565a41a74c0e1330315caad0904b/testing certifications/qcflte/Software Testing Training Manual_Ver_0.3.pdf --------------------------------------------------------------------------------