I want to import the floor price from that website into my Google Sheet: https://digitaleyes.market/collections/Turtles
So for example right now the number "22"
I tried the following but with no success:
=importxml("https://digitaleyes.market/collections/Turtles";"/html[1]/body[1]/div[1]/div[2]/main[1]/div[1]/div[1]/div[2]/div[1]/span[2]/span[1]/text()")
or
=importxml("https://digitaleyes.market/collections/Turtles";"/html[1]/body[1]/div[1]/div[2]/main[1]/div[1]/div[1]/div[2]/div[1]/span[2]/span[1]")
I only get #NV all the time.
Anyone can help me out?
Thanks in advance!
CodePudding user response:
As the page is built in javascript on the client side and not on the server side, you will not be able to retrieve the data by the importxml / importhtml functions.