I am trying to webscrape a dynamic popup multitabbed window to get the actual value of fields. When i use the regular webscraping tools on the window it pulls over everything out of order from all three tabs. if i try one element at a time it does pull over a lot of what i need, but any combobox it pulls all the options not just what is displayed. By looking through the development pane I have been able to find where on the websites coding it is storying the actual values, but i have not been able to make âget attributesâ work correctly. below is a screen shot of my findings. what i am looking for is highlighted on the far right. on chrome it is on the computed properties tab of the developer pane âvalue:â
the most success i have had so far is using a find children/ for each loop and putting a read OCR withing that, but it takes 20x longer than pulling directly would take and i have to do this scrape for about 20,000 times or more records.
someone has mentioned a javascript injection on another post that looked somewhat similar but i lack the vocabulary to properly search what i need to accomplish that.
thanks!