webdriver.ioを使用してスクロールダウンできません。エラーメッセージが表示されず、スクロールしません。私はWebdrver.ioのドキュメントからさまざまなソリューションを試しました。ウェブ上のwebdriver.ioでスクロールが機能しない
it('should demonstrate the scroll command', function() {
var elem = $('#myElement');
// scroll to specific element
elem.scroll();
// scroll to specific element with offset
// scroll offset will be added to elements position
elem.scroll(100, 100);
// scroll to specific x and y position
browser.scroll(0, 250);
});
これらのうち、何か提案はありますか?
あなたがスクロールを模倣するアクションクラスのmove_to_element(要素)を試すことができます。 – kushal