Explore Online Courses
Free Courses
Hire from us
Become an Instructor
Reviews
All Courses
Submit
Submit
Take the Free Practice Test
Free Practice Test
Instructions:
FREE test and can be attempted multiple times.
26 Minutes
13 Multiple Choice Questions
Fill in the Details to Get Started
Select your preference
Self-learning and knowledge validation
Completed a course & revising
Just curious
By providing your contact details, you agree to our
Terms of Use
&
Privacy Policy
Welcome to your Selenium Quiz
Which are the browsers supported by Selenium IDE?
Firefox and Chrome
IE
Chrome
Android
Can abstract class declared as final?
Yes
No
In webdriver, which method closes the open browser?
quit()
terminate()
shutdown()
close()
Consider the following code snippet WebDriverWait wait = new WebDriverWait(driver, 30); wait.until(ExpectedConditions.presenceOfElementLocated(by)); This is an example of an implicit wait ?
True
False
When invoked on a web element, what does the submit method do?
It is used to submit a form and it works on any web element.
It is used to submit a form but it works only on the web element whose type is 'submit'.
It is the same as the click method.
There is no submit method for a web element.
Does the language of Application (Which used to develop Application) Affect to choose Test Automation Language?
Yes
No
Selenium tests--------------?
DOS applications
Browser-based applications
GUI applications
None of the above
Which Class used to read /access html tags in Webdriver?
WebDriver
WebElement
FirefoxDriver
Assert in TestNG ?
Fail the Test case if Assertion Fails
Continue for next statement with Failure Status
Does Java Support Multiple inheritance?
Yes
No
Which of the following code will help you to create an instance of a Chrome driver?
WebDriver wd = new ChromeDriver();
ChromeDriver wd = new ChromeDriver();
System.setProperty('webdriver.chrome.driver', Path to chromedriver.exe '); ChromeDriver wd= new ChromeDriver();
System.setProperty('webdriver.chrome.driver',Path to chromedriver.exe '); WebDriver wd= new ChromeDriver();
How to execute only a required set of test cases from 100 of Test cases?
Using @BeforeMethod
Using @AfterTest
Group parameter of @Test
Comment out the @Test methods
How to open a url using Webdriver ?
Driver.get('url')
Driver.navigate.to('url')
Driver.openURL('url')
driver.get('url') and driver.navigate.to('url')
Time is Up!