How to Select Date from DatePicker/Calendar in Selenium Webdriver (medium)
20 Questions
1 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

Which type of control is used for DateTime selection in HTML5?

  • TimePicker
  • DatePicker
  • DateTimePicker (correct)
  • Calendar

How many input boxes are there for both date and time in the DateTime Picker control?

  • Three
  • One (correct)
  • Two
  • Four

To fill the date and time in the input box, what should be passed as the value?

  • Date and time without separating with delimiter (correct)
  • Only the time
  • Date and time separated by a delimiter
  • Only the date

What key should be pressed to shift focus from date to time in the DateTime Picker control?

<p>Tab (D)</p> Signup and view all the answers

What is the code used for importing the required classes for handling DateTimePicker in Selenium?

<p>import java.util.List; (B)</p> Signup and view all the answers

What is the name of the class that contains the code for handling DateTimePicker in Selenium?

<p>DateTimePicker (B)</p> Signup and view all the answers

What is the name of the method that handles the DateTimePicker in Selenium?

<p>dateTimePicker (B)</p> Signup and view all the answers

What is the name of the WebDriver used in the code for handling DateTimePicker?

<p>ChromeDriver (C)</p> Signup and view all the answers

What is the name of the website where the DateTimePicker control can be accessed?

<p><a href="http://demo.guru99.com/test/">http://demo.guru99.com/test/</a> (B)</p> Signup and view all the answers

What is the file name of the ChromeDriver used in the code for handling DateTimePicker?

<p>chromedriver.exe (C)</p> Signup and view all the answers

Which method is used to set the implicit wait time in Selenium WebDriver?

<p>driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS) (C)</p> Signup and view all the answers

What is the correct XPath expression to locate the date time picker control?

<p>//form//input[@name='bdaytime'] (B)</p> Signup and view all the answers

What is the correct method to fill the date in the date time picker control?

<p>dateBox.sendKeys('09/25/2013') (D)</p> Signup and view all the answers

What key is pressed to shift focus to the time field in the date time picker control?

<p>Keys.TAB (B)</p> Signup and view all the answers

What is the correct method to change the month in the calendar?

<p>nextLink.click() (D)</p> Signup and view all the answers

How can we change the year in the calendar?

<p>By clicking on the next link (A)</p> Signup and view all the answers

How is the time selected in the time dropdown of the date time picker control?

<p>In a gap of 30 minutes (C)</p> Signup and view all the answers

What is the correct method to maximize the browser window in Selenium WebDriver?

<p>driver.manage().window().maximize() (B)</p> Signup and view all the answers

What is the correct method to wait for an element to appear on the page in Selenium WebDriver?

<p>driver.wait().until(elementAppears) (D)</p> Signup and view all the answers

What is the correct method to split a date and time string in Java?

<p>dateTime.split(' ') (B)</p> Signup and view all the answers

More Like This

ED10
5 questions

ED10

PlentifulMonkey avatar
PlentifulMonkey
Python Datetime Module Quiz
13 questions

Python Datetime Module Quiz

FortunateAlgorithm2720 avatar
FortunateAlgorithm2720
Use Quizgecko on...
Browser
Browser