Currently working on selenium webdriver and the using the language Java.
Log.info(\"Clicking on To weekrange dropdown\"); JavascriptExecutor executor25 = (J
You have some spacing issues:
driver.findElement(By.id(" toWeek")));
Should not have a space in the id:
driver.findElement(By.id("toWeek")));