What We Are Learn On This Post
Zapcom Interview Questions
- Which of the following parameters is not required to initialize Fluent wait?
a.The maximum amount of time to wait for a condition.
b.The frequency to check the success or failure of a specified condition.
c.Exception classes to ignore while waiting.
d.Expected condition to wait. - What type of Wait objects keep alive until the WebDriver object dies?
1.Explicit Wait
2.Fluent Wait
3.All of the above
4.Implicit Wait - Which of the following exceptions is not an ideal candidate to ignore via FluentWait?
1.TimeoutException
2.ElementNotVisibleException
3.NoSuchElementException
4.NoAlertPresentException - What can be used to test Flex/Flash applications using Selenium?
1.FlexUI
2.Xebium
3.FlexUISelenium
4.SeleniumFlex - Which of the following statements won’t hold true for Selenium 3.0?
1. In Selenium 3, all the major browser vendors ship their own WebDriver implementations except Mozilla
2. In Selenium 3, all the major browser vendors (Apple, Google, Microsoft, and Mozilla) ship a WebDriver compatible with their browser.
3. In Selenium 3, all the major browser vendors ship their own WebDriver implementations except IE.
4. In Selenium 3, all the major browser vendors ship their own WebDriver implementations except Apple. - Which case is not matched using sendkeys method
1.sendKeys(Keys.F5) == sendKeys(“\uE035”)
2.sendKeys(Keys.PAGE_DOWN) == sendKeys(“\uE00E”)
3.sendKeys(Keys.ARROW_DOWN) == sendKeys(“\uE015”)
4.sendKeys(Keys.SPACE) == sendKeys(“\uE00D”)
5.sendKeys(Keys.TAB) == sendKeys(“\uE004”)
6.sendKeys(Keys.ALT) == sendKeys(“\uE00A”) - Which is the Supermost interface in Werbdriver?
- What is the attribute in @Test annotation ??
- Following case will not satisfy for POM
1.Unit testing
2.White Box testing
3.parallel execution
4. None of this - Which is the recommended to find dynamic locators??
1.Relative XPath
2.Regular expression
3.css
4. None of this - In Selenium, variables are stored in
1. storedVars
2.storedVariables
3. VariablesStore
4. All of the above
Leave a Reply