If you ever need to copy text from Wattpad on desktop, here’s a method that still works for me.
Open the story/chapter you want to copy from and wait until the page is fully loaded.
Open the browser’s Developer Tools:
- Chrome / Edge: press F12 or Ctrl + Shift + I
- Firefox: press F12 or Ctrl + Shift + I
- Safari: enable the Develop menu first, then choose Develop → Show JavaScript Console
Go to the Console tab.
Paste and run this command:
document.onselectstart = null;
- After that, you should be able to select text on the page normally.
- Highlight the text you want.
- In the Console, run:
console.log(window.getSelection().toString())
- The selected text will be printed in the console. You can then select it there and copy it to your clipboard with Ctrl+C.
A couple of notes:
- Make sure the chapter has finished loading before you start.
- If the selection doesn’t work immediately, refresh the page and try again.
- This method was tested in a desktop browser using Developer Tools.
Hope this helps someone.