Podcast
Questions and Answers
Which tool is used to create a Selenium project?
Which tool is used to create a Selenium project?
What is the purpose of TestNG?
What is the purpose of TestNG?
How can you run only failed test cases?
How can you run only failed test cases?
What is the first step to prepare a Selenium project in Eclipse?
What is the first step to prepare a Selenium project in Eclipse?
Signup and view all the answers
What does the 'src' folder represent in Eclipse?
What does the 'src' folder represent in Eclipse?
Signup and view all the answers
What is the purpose of selecting 'package' in Eclipse?
What is the purpose of selecting 'package' in Eclipse?
Signup and view all the answers
What is the superclass for the newly created class in Eclipse?
What is the superclass for the newly created class in Eclipse?
Signup and view all the answers
What is the purpose of TestNG in the context of the tutorial?
What is the purpose of TestNG in the context of the tutorial?
Signup and view all the answers
What is the purpose of the 'TestProject' java project?
What is the purpose of the 'TestProject' java project?
Signup and view all the answers
What is the purpose of the 'com.test' package in Eclipse?
What is the purpose of the 'com.test' package in Eclipse?
Signup and view all the answers
Which button do you need to click to create the class DemoA?
Which button do you need to click to create the class DemoA?
Signup and view all the answers
What is the purpose of the code 'Driver.manage().window().maximize();'?
What is the purpose of the code 'Driver.manage().window().maximize();'?
Signup and view all the answers
What does the code 'driver.get(https://www.google.co.in);' do?
What does the code 'driver.get(https://www.google.co.in);' do?
Signup and view all the answers
What does the code 'driver.findElement(By.name(“q”)).sendKeys(“Hi”);' do?
What does the code 'driver.findElement(By.name(“q”)).sendKeys(“Hi”);' do?
Signup and view all the answers
What is the purpose of adding the Selenium-standalone jar file to the project?
What is the purpose of adding the Selenium-standalone jar file to the project?
Signup and view all the answers
What is the purpose of the 'lib' folder in the project?
What is the purpose of the 'lib' folder in the project?
Signup and view all the answers
What is the purpose of converting the DemoA and DemoB classes into a testng.xml file?
What is the purpose of converting the DemoA and DemoB classes into a testng.xml file?
Signup and view all the answers
What is the purpose of the 'testng.xml' suite file?
What is the purpose of the 'testng.xml' suite file?
Signup and view all the answers
What is the purpose of the 'Parallel Mode' in the testng.xml file?
What is the purpose of the 'Parallel Mode' in the testng.xml file?
Signup and view all the answers
What happens when you click on 'run as TestNG Suite' for the testng.xml file?
What happens when you click on 'run as TestNG Suite' for the testng.xml file?
Signup and view all the answers
Which command is used to execute TestNG via command line?
Which command is used to execute TestNG via command line?
Signup and view all the answers
What is the purpose of the 'test-output' folder?
What is the purpose of the 'test-output' folder?
Signup and view all the answers
What happens when you run the 'testng-failed.xml' file from command line?
What happens when you run the 'testng-failed.xml' file from command line?
Signup and view all the answers
What is the purpose of the 'log' method in the Reporter class?
What is the purpose of the 'log' method in the Reporter class?
Signup and view all the answers
What is the purpose of the 'Parallel Mode' in the testng.xml file?
What is the purpose of the 'Parallel Mode' in the testng.xml file?
Signup and view all the answers
How can you run only failed test cases through Eclipse?
How can you run only failed test cases through Eclipse?
Signup and view all the answers
What is the purpose of the TestNG reports?
What is the purpose of the TestNG reports?
Signup and view all the answers
What is the purpose of the 'lib' folder in the project?
What is the purpose of the 'lib' folder in the project?
Signup and view all the answers
What is the purpose of converting test classes into a testng.xml file?
What is the purpose of converting test classes into a testng.xml file?
Signup and view all the answers
What is the purpose of the 'resource' option in the properties window?
What is the purpose of the 'resource' option in the properties window?
Signup and view all the answers