Search
K

google_sheets_add_row

Sends data to google sheets
The Scrape to GSheets no code option is implemented as follows. The code generated in the code layer is detailed below in the Code Layer example.
Code Layer example
//endcode//Generated Script id=0
var delayKey = 1000;
setTimeout(function(){
var element = document.querySelector('div > div > div > div > div:nth-of-type(2) > div > div > div > h1 > span');
google_sheets_add_row('GOOGLE_SHEETS_ID',/*name*/'Sheet1',[element.innerText]);
},/*delay*/1*delayKey);
//endcode