How to set focus on a section of my web page then scroll down

前端 未结 2 467
梦毁少年i
梦毁少年i 2021-01-18 01:35

using protractor I would like to first set focus on a left pannel in my web page then scroll down in order to click on a filter. Any idea how to do this using protractor syn

2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-18 01:52

    You can use this too: browser.executeScript("arguments[0].scrollIntoView();", basePage.faqText.getWebElement());

    I does the magic in one line.

    basePage.faqText is the element that I want to scroll here.

提交回复
热议问题