Auto scroll down to the bottom of the page: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
Tags: Mobile edit Mobile web edit
 
(One intermediate revision by the same user not shown)
Line 13: Line 13:
</pre>
</pre>


* on {{Mac}} (1) open the browser and input the url (2) install [http://www.murgaa.com/ Mac Auto Mouse Clicker Software Downloads for Mouse Automation] (3) Grant the permission APP/software to access "Universal Access"<ref>[https://mcmw.abilitynet.org.uk/apple-os-x-using-the-keyboard-to-control-the-mouse Apple OS X - Using the keyboard to control the mouse | My Computer My Way]</ref> (4) sent the {{kbd |key = SPACE}} or {{kbd |key = ↓}} (down arrow character) keystroke from the APP/software
* on {{Mac}} (1) open the browser and input the url (2) install [http://www.murgaa.com/ Mac Auto Mouse Clicker Software Downloads for Mouse Automation] (3) Grant the permission of APP/software allowed to access "Universal Access"<ref>[https://mcmw.abilitynet.org.uk/apple-os-x-using-the-keyboard-to-control-the-mouse Apple OS X - Using the keyboard to control the mouse | My Computer My Way]</ref> (4) sent the {{kbd |key = SPACE}} or {{kbd |key = ↓}} (down arrow character) keystroke to the application e.g. Google Chrome from the APP/software.


== References ==
== References ==

Latest revision as of 08:27, 19 July 2020

Solutions to auto scroll down to the bottom of the page and repeat

Solutions[edit]

  • On Win Os windows.png : (1) need a mouse that has a wheel (2) open the browser and input the url (3) press the mouse wheel button and release (4) move the mouse a bit down[1][2]
  • On Win Os windows.png or Mac icon_os_mac.png : input the javascript code into the console of browser[3][4][5]:
## enable the auto scroll
var scroll = setInterval(function(){window.scrollTo(0, document.body.scrollHeight)},2000);

## stop the auto scroll
clearInterval(scroll);

References[edit]