[Selenium]Turn Page By Scroll Bar

系统 1471 0

Description:

Need to turn page by operating scroll bar and find out the element in the current page.

Previous page will not exist in DOM structure when turning page.

Solution:

  1. Get the total height, button height, scroll bar height
  2. Calculate total move height, totalMoveHeight = totalHeight - 2*buttonHeight - scrollbarHeight
  3. Calculate page number, pageNum =  totalMoveHeight/scrollbarHeight
  4. Calculate the last page when it is less then a whole page, lessThenOnePageHeight = totalMoveHeight%scrollbarHeight
  5. Turn page according to the page number and lessThenOnePageHeight

Code:

      /**************************Report Portal–>ReportProductionFlow.java******************************/



public void seleteTemplate_NotClassifiedFactsheet(String template){



        //Scroll the scroll bar page by page



        Actions actions = new Actions(page.getDriver());



        int totalHeight = page.getDiv_scrollbar_TemplateMappingSetting().getSize().getHeight();



        int buttonHeight = page.getButton_ScrollbarDown().getSize().getHeight();



        int scrollbarHeight = page.getScrollbar_TemplateMappingSetting().getSize().getHeight();



        int totalMoveHeight = totalHeight - buttonHeight - buttonHeight - scrollbarHeight;



        int pageNum = totalMoveHeight/scrollbarHeight;



        int lessThenOnePageHeight = totalMoveHeight%scrollbarHeight;



        if(lessThenOnePageHeight>0){



            pageNum+=1;



        }



        for(int i=0;i<pageNum;i++){



            if ((i==(pageNum-1))&&(lessThenOnePageHeight>0)) {



                scrollbarHeight=lessThenOnePageHeight;



            }



            actions.dragAndDropBy(page.getScrollbar_TemplateMappingSetting(), 0, scrollbarHeight).perform();



            SeleniumUtil.sleep(1);



            List <WebElement> groupList = page.getGroupListInTemplateMapping();



            int groupNum = groupList.size();



            for(int j=0;j<groupNum;j++){



                WebElement groupEl=groupList.get(j);



                String groupName = groupEl.getText();



                



                if(groupName.equals("Not Classified")){



                    System.out.println("Find Group : "+groupName+" in page "+i);



                    WebElement factsheetTemplateEl=page.getDDL_NotClassifiedFactsheet();



                    factsheetTemplateEl.click();



                    page.getLink_Template(template).click();



                }



            }



        }



    }



/**************************Report Portal–>ReportProductionFlow.java******************************/


    

 

      /**************************Report Portal–>ReportProductionPage.java******************************/



public WebElement getDiv_scrollbar_TemplateMappingSetting(){



        return SeleniumUtil.waitForElementPresent(driver, By.cssSelector("div#uidialog7.uidialog div.uidialogcontent div#mapEditDlgDiv div.tempmapsetup div.itemsgrid div.rtq-grid div.rtq-grid-sz div.rtq-scrollpanel div.rtq-scrollbar.rtq-scrollbar-y"));



}



public WebElement getButton_ScrollbarDown(){



        return SeleniumUtil.waitForElementPresent(driver, By.cssSelector("div#uidialog7.uidialog div.uidialogcontent div#mapEditDlgDiv div.tempmapsetup div.itemsgrid div.rtq-grid div.rtq-grid-sz div.rtq-scrollpanel div.rtq-scrollbar.rtq-scrollbar-y a.rtq-scrollbar-down"));



}   



 



public WebElement getScrollbar_TemplateMappingSetting(){



        return SeleniumUtil.waitForElementPresent(driver, By.cssSelector("div#uidialog7.uidialog div.uidialogcontent div#mapEditDlgDiv div.tempmapsetup div.itemsgrid div.rtq-grid div.rtq-grid-sz div.rtq-scrollpanel div.rtq-scrollbar.rtq-scrollbar-y div.rtq-scrollbar-bar"));



 }



/**************************Report Portal–>ReportProductionFlow.java******************************/



 


    

 

[Selenium]Turn Page By Scroll Bar


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论