Saltar al contenido

cómo seleccionar una fecha del calendario en el ejemplo de código de selenio

Este team de trabajo ha estado largas horas buscando la solución a tu interrogante, te brindamos la respuestas por esto esperamos serte de gran ayuda.

Ejemplo 1: selector de fechas en selenium

Some date pickers allow you to type.Inthiscase we can 
just use sendKeys method to enter the date we want.If that does not work, we need to write our logic 
forthis using java and selenium.1.Click on the field to trigger the date picker
2.Get the displayed date on the date picker and calculate
how many times you need to click left/right
to go to the right month/year.3.Once we go to the correct month/year, select the date.

Ejemplo 2: cómo elegir la fecha de datepicker en selenio

((JavascriptExecutor)driver).executeScript("document.getElementById('fromDate').removeAttribute('readonly',0);");// Enables the from date boxWebElement fromDateBox= driver.findElement(By.id("fromDate"));
fromDateBox.clear();
fromDateBox.sendKeys("8-Dec-2014");//Enter date in required format

Reseñas y calificaciones

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *