How to Scrape a Website header contains a specific string

Hi, I want to scrape this website: BSE Ltd-Member Database

BSE Clearing Number | Broker Name (Here: ALLWIN SECURITIES LTD. (Trade Name: ALLWIN SECURITIES LTD.) | Registered Office | Correspondence Office | Year Broking Business Started | etc.

Need to add data from the white-field to the greyed-out field. Can you help with a code snippet?

@iamshrimohan Hi, it appears that it should be possible by applying jQuery selector - ':contains()'

Example:

{"_id":"bseindia-com","startUrl":["https://www.bseindia.com/members/Memberdata.aspx?MemberNo=951"],"selectors":[{"id":"trade-name","parentSelectors":["_root"],"type":"SelectorText","selector":"span#ContentPlaceHolder1_lblheading","multiple":false,"regex":""},{"id":"registered-office","parentSelectors":["_root"],"type":"SelectorText","selector":"table[align=\"center\"] td:contains(\"Registered Office\") + td","multiple":false,"regex":""},{"id":"correspondence-office","parentSelectors":["_root"],"type":"SelectorText","selector":"table[align=\"center\"] td:contains(\"Correspondence Office\") + td","multiple":false,"regex":""},{"id":"year-Broking-Business-Started","parentSelectors":["_root"],"type":"SelectorText","selector":"table[align=\"center\"] td:contains(\"Year Broking Business Started\") + td","multiple":false,"regex":""}]}

Learn more: Top 5 CSS Selectors You Need to Know.