Hi @Anshita_Sen… If you are trying to swipe the screen in ANDROID, try this which worked successfully for me.
Dimension size = driver.manage().window().getSize();
int startx = (int) (size.width * 0.70);
int starty = size.height;
int endy = size.height / 2;
int endx = (int) (size.width * 0.30);
driver.swipe(startx, starty, endx, endy, 2000);
And coming to your query, you cannot select ‘Apr’ but you can select ‘May’ and scroll it using the above code with if else till your required element is visible. And as I see the details of the element it’s scrollable too. So I think this works for you.