regex - Selenium IDE Webscraping - How do I create an Array (Or Multiple outputs) -


i have got grips how multiple "individual" selenium codesnippets webscraping individual values, , i'm happy can extend further.

i used piece of software called travelsure used regex scraping, , if found multiple values, place them in array

so 1 of travelsure scrapes was

<div(.*?)> 

this outputted (the "()" bit saved), every single div , contents inside div tag. outputted csv

on selenium, if ask @ large range, concatenates because assumes want 1 item, example below

storetext | css=h1.header-style-e.color-q | tree 

i want give me output of 8 values in csv example:

a,b,c,d,e,f,g,h 

instead of

abcdefgh 


Comments

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -