Well, you need to get your userAgent and browser version to match. CreepJS shows that you have v109 userAgent running in Chrome 114, so you need to set userAgent to version 114.
Though I am not familiar with other errors, it states that you have something bad going on with canvas and client rects
Regex Problem
-
Hello guys I want to use regex to get this text:
https://plus.google.com/number
Ex: https://plus.google.com/2412314341
But the number will be different each time the regex is executed.
How can I achieve this ? Tried some things but didn't have a big success
Any thoughts?
-
https:\/\/plus.google.com\/(\d+) or (https:\/\/plus.google.com\/\d+) -
Thanks a lot @Fox it works, but there is another problem that I have.
If I have a big file output with Page Html command from Browser Option the result there is no result, but i I try for example a small chunk of text in the file it finds the google plus link.
Also tried with a variable following this tutorial from bablosoft https://www.youtube.com/watch?v=U88xUpj2BiI but the output is not there either if I try to put it on a file or log the variable. Here is an example:

If there is little text in file then the output is this

EDIT: Somehow I made it work, thanks again