简体   繁体   English

使用 JavascriptExecutor 的 Selenium Datepicker

[英]Selenium Datepicker using JavascriptExecutor

Please advise if this approach is accepted to pick-up date using Selenium请告知是否接受这种方法来使用 Selenium 取货

WebDriver driver = new ChromeDriver();

driver.manage().window().maximize();

driver.get("https://www.spicejet.com/");

Thread.sleep(3000);

JavascriptExecutor js = ((JavascriptExecutor)driver);

js.executeScript ("document.getElementById('ctl00_mainContent_view_date1').removeAttribute('readonly',0);"); 

WebElement onwards_date = driver.findElement(By.id("ctl00_mainContent_view_date1"));
        onwards_date.clear();
        onwards_date.sendKeys("28/02"); 

js.executeScript ("document.getElementById('ctl00_mainContent_view_date2').removeAttribute('readonly',0);"); 

WebElement return_Date = driver.findElement(By.id("ctl00_mainContent_view_date2"));
        return_Date.clear();
        return_Date.sendKeys("27/03"); 

You can set value using JavaScript to input with ctl00_mainContent_txt_Fromdate id for from date and ctl00_mainContent_txt_Todate id for to date .您可以使用 JavaScript 设置值以输入ctl00_mainContent_txt_Fromdate id for from datectl00_mainContent_txt_Todate id for to date You'll not see value changing from UI, but it works.您不会看到 UI 中的值发生变化,但它确实有效。

js.executeScript("arguments[0].value = arguments[1]",
    driver.findElement(By.id("ctl00_mainContent_txt_Fromdate")), "28-02-2020");

Instead of using sleep in you code, use WebDriverWait that makes WebDriver wait for a certain condition and will wait only as long as required.不要在代码中使用sleep ,而是使用WebDriverWait ,它使 WebDriver 等待特定条件,并且仅在需要时等待。

WebDriver driver = new ChromeDriver();
WebDriverWait wait = new WebDriverWait(driver, 10);
JavascriptExecutor js = (JavascriptExecutor) driver;
driver.manage().window().maximize();

driver.get("https://www.spicejet.com/");

// Wait for Search button to be clickable, the state in which we assume that the site has loaded
WebElement searchButton = wait.until(ExpectedConditions.elementToBeClickable(By.id("ctl00_mainContent_btn_FindFlights")));

// Select From and To Cities

js.executeScript("arguments[0].value = arguments[1]",
        driver.findElement(By.id("ctl00_mainContent_txt_Fromdate")), "28-02-2020");

js.executeScript("arguments[0].value = arguments[1]",
        driver.findElement(By.id("ctl00_mainContent_txt_Todate")), "01-03-2020");

searchButton.click();

To pick-up a date within the DEPART DATE field in the website https://www.spicejet.com/ using Selenium 's executeScript() method from JavascriptExecutor you can use the following Locator Strategies :要使用来自JavascriptExecutor 的SeleniumexecuteScript()方法在网站https://www.spicejet.com/DEPART DATE字段中获取日期,您可以使用以下定位器策略

  • Code Block:代码块:

     System.setProperty("webdriver.chrome.driver", "C:\\\\Utility\\\\BrowserDrivers\\\\chromedriver.exe"); ChromeOptions options = new ChromeOptions(); options.addArguments("start-maximized"); options.setExperimentalOption("excludeSwitches", Collections.singletonList("enable-automation")); options.setExperimentalOption("useAutomationExtension", false); WebDriver driver = new ChromeDriver(options); driver.get("https://www.spicejet.com/"); WebElement element = driver.findElement(By.cssSelector("input[name$= 'txt_Fromdate']")); ((JavascriptExecutor)driver).executeScript("arguments[0].removeAttribute('readonly')", element); WebElement newElement = driver.findElement(By.cssSelector("input[name$= 'txt_Fromdate']")); ((JavascriptExecutor) driver).executeScript("arguments[0].setAttribute('value','28/02')", newElement);
  • Browser Snapshot:浏览器快照:

spicejet出发日期


References参考

You can find a couple of relevant detailed discussions in:您可以在以下位置找到一些相关的详细讨论:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM