0 votes
in Selenium by
A code snippet related to Fluent wait

   Example:

     Wait wait = new FluentWait(driver)

     .withTimeout(30, SECONDS)

     .pollingEvery(5, SECONDS)

     .ignoring(NoSuchElementException.class);

      1. Ignores NoSuchElementException

      2. Automatically adds NoSuchElementException

      3. Defines the maximum amount of time to wait for a condition

      4. Frequency with which to check the condition

Identify the valid options based on above example

a) Option 1,3 & 4

b) Option 3 & 4

c) Option 2,3 & 4

1 Answer

0 votes
by
Option 1,3 & 4

Related questions

0 votes
asked Jan 30, 2020 in Selenium by rajeshsharma
0 votes
asked Feb 4 in Image Classification by SakshiSharma
...