How to get + sign while scraping?

Describe the problem.

  • Symbol is not getting while scrapping, please have a look on the URL below, in the Composition there is " Doxylamine Succinate + Folic Acid + Pyridoxine".
    while scraping the output shows "Doxylamine SuccinateFolic AcidPyridoxine" like this, how to get those data with + sign?; ie, very important.

Url: https://pharmeasy.in/online-medicine-order/env-od-tab-135197

Sitemap:
{"_id":"pharmeasy","startUrl":["https://sampleworkingpurpose.blogspot.com/2020/06/pharmeasy-1-7000.html"],"selectors":[{"id":"link","type":"SelectorLink","parentSelectors":["_root"],"selector":".post-body a","multiple":true,"delay":0},{"id":"Name","type":"SelectorText","parentSelectors":["link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Prescription","type":"SelectorText","parentSelectors":["link"],"selector":"div._2OB-F","multiple":false,"regex":"","delay":0},{"id":"Mfg","type":"SelectorText","parentSelectors":["link"],"selector":"div._3JVGI","multiple":false,"regex":"","delay":0},{"id":"Generic value","type":"SelectorText","parentSelectors":["link"],"selector":"div.WvxKN","multiple":false,"regex":"","delay":0},{"id":"MRP","type":"SelectorText","parentSelectors":["link"],"selector":"div._1_yM9","multiple":false,"regex":"","delay":0},{"id":"MRP-1","type":"SelectorText","parentSelectors":["link"],"selector":"div._3FUtb","multiple":false,"regex":"","delay":0},{"id":"Refrigerator","type":"SelectorText","parentSelectors":["link"],"selector":"div._2wM9c","multiple":false,"regex":"","delay":0},{"id":"Therapeutic Classification","type":"SelectorText","parentSelectors":["link"],"selector":"div._2NWFQ","multiple":false,"regex":"","delay":0},{"id":"Description","type":"SelectorText","parentSelectors":["link"],"selector":"div._1bvdR","multiple":false,"regex":"","delay":0},{"id":"Uses","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Contraindications","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Side Effect","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Pregnancy","type":"SelectorText","parentSelectors":["link"],"selector":"div._3hxyn:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"Feeding","type":"SelectorText","parentSelectors":["link"],"selector":"div._3hxyn:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Driving","type":"SelectorText","parentSelectors":["link"],"selector":"div._3hxyn:nth-of-type(4)","multiple":false,"regex":"","delay":0},{"id":"Alcohol","type":"SelectorText","parentSelectors":["link"],"selector":"div._3hxyn:nth-of-type(5)","multiple":false,"regex":"","delay":0},{"id":"Other Warning","type":"SelectorText","parentSelectors":["link"],"selector":"div._2jtAu","multiple":false,"regex":"","delay":0},{"id":"Mode of Action","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(5)","multiple":false,"regex":"","delay":0},{"id":"Direction of use","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(6)","multiple":false,"regex":"","delay":0},{"id":"Interactions-1","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(7)","multiple":false,"regex":"","delay":0},{"id":"Storage","type":"SelectorText","parentSelectors":["link"],"selector":"div._2q0Km:nth-of-type(8)","multiple":false,"regex":"","delay":0},{"id":"Missing Dosage","type":"SelectorText","parentSelectors":["link"],"selector":"div:nth-of-type(9) div:nth-of-type(3) ul","multiple":true,"regex":"","delay":0},{"id":"Overdose","type":"SelectorText","parentSelectors":["link"],"selector":"div:nth-of-type(9) div._76pS2:nth-of-type(2) ul","multiple":false,"regex":"","delay":0},{"id":"Faq's","type":"SelectorText","parentSelectors":["link"],"selector":"div._3xB9F","multiple":false,"regex":"","delay":0},{"id":"Img","type":"SelectorImage","parentSelectors":["link"],"selector":".swiper-slide-active img._150ST","multiple":false,"delay":0},{"id":"Img-1","type":"SelectorImage","parentSelectors":["link"],"selector":"[aria-label='Go to slide 2'] img","multiple":false,"delay":0},{"id":"Img-2","type":"SelectorImage","parentSelectors":["link"],"selector":"[aria-label='Go to slide 2'] img","multiple":false,"delay":0},{"id":"Img-3","type":"SelectorImage","parentSelectors":["link"],"selector":"[aria-label='Go to slide 3'] img","multiple":false,"delay":0},{"id":"Qty","type":"SelectorText","parentSelectors":["link"],"selector":"div._36aef","multiple":false,"regex":"","delay":0},{"id":"Ingredients-benefits","type":"SelectorText","parentSelectors":["link"],"selector":"._1s99T > div._2q0Km","multiple":false,"regex":"","delay":0},{"id":"Faq's-1","type":"SelectorText","parentSelectors":["link"],"selector":"h3._2kjAE:nth-of-type(1), div._209B5:nth-of-type(2)","multiple":true,"regex":"","delay":0},{"id":"Status","type":"SelectorText","parentSelectors":["link"],"selector":"div._2YfZX","multiple":false,"regex":"","delay":0}]}

Maybe you could try group selector - it will not add "+", but it will group every element separately in brackets; it will be more logical rather than having it in one line.

The + symbols here are not actually text and they are on another layer, something like a background image. You can test this yourself by manually selecting the whole line, copy, then paste it in Notepad. The + won't appear either.