Scrape data from the 'bag' page and remove the item

Describe the problem:
I want to scrape the data like delivery fee and tax for each item, so I need to click 'add the bag' at first and go to the bag page, after scraping at the bag page, I need to remove the item for that guarantees the delivery fee and tax are matching the correct single item. Now, I use several Element Click but cannot implement the function. Hence, how can I do that?
Url: Budee - Fresno Dispensary Menu | Leafly

{"_id":"test","startUrl":["https://www.leafly.com/dispensary-info/budee-delivery/menu"],"selectors":[{"id":"product_card","parentSelectors":["_root"],"type":"SelectorElement","selector":".col-1\\/2 div.flex-col","multiple":true},{"id":"link","parentSelectors":["product_card"],"type":"SelectorLink","selector":"a.h-full","multiple":false},{"id":"Features","parentSelectors":["link"],"type":"SelectorGroup","selector":".hidden div.inline-block","extractAttribute":""},{"id":"Brand","parentSelectors":["link"],"type":"SelectorText","selector":".hidden .mt-xs span","multiple":false,"regex":""},{"id":"Price","parentSelectors":["product_card"],"type":"SelectorText","selector":"div.text-lg","multiple":false,"regex":""},{"id":"Unit of Orice","parentSelectors":["product_card"],"type":"SelectorText","selector":".mt-sm div.text-xs","multiple":false,"regex":""},{"id":"Product Name","parentSelectors":["link"],"type":"SelectorText","selector":".hidden h1","multiple":false,"regex":""},{"id":"Rating","parentSelectors":["link"],"type":"SelectorText","selector":".hidden span.pr-xs","multiple":false,"regex":""},{"id":"Reviews","parentSelectors":["link"],"type":"SelectorText","selector":".text-sm .pl-xs span","multiple":false,"regex":""},{"id":"Sale","parentSelectors":["product_card"],"type":"SelectorText","selector":"div.bg-notification","multiple":false,"regex":""},{"id":"Regular Price","parentSelectors":["product_card"],"type":"SelectorText","selector":".flex span","multiple":false,"regex":""},{"id":"Bag","parentSelectors":["link"],"type":"SelectorElementClick","clickElementSelector":".my-lg button.flex","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard","multiple":true,"selector":"body"},{"id":"View bag","parentSelectors":["Bag"],"type":"SelectorLink","selector":"a.flex.relative","multiple":false},{"id":"Delivery","parentSelectors":["View bag"],"type":"SelectorText","selector":"div[data-testid='delivery-fee']","multiple":false,"regex":""},{"id":"Remove","parentSelectors":["Delivery"],"type":"SelectorElementClick","clickElementSelector":"a.jsx-4a187f3cc6c394a3.text-xs","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard","multiple":true,"selector":"div.m-none"},{"id":"Tax","parentSelectors":["View bag"],"type":"SelectorText","selector":"div[data-testid='est.-taxes']","multiple":false,"regex":""}]}

@Qiu Hi, the main issue arises due to the fact that the 'bag' page links are identical for all of the products - My Orders | Leafly and Web Scraper views this as a duplicate link(duplicate links are automatically discarded).

To circumvent this, you can use an 'Element click' selector, however, all of the required data will have to be scraped from the 'pick up' page as the 'Element click' selector will not keep functioning if the page is reloaded and any scraped data from the previous page is will be ''forgotten''.

Example:

{"_id":"test","startUrl":["https://www.leafly.com/dispensary-info/budee-delivery/menu"],"selectors":[{"id":"product_card","multiple":true,"parentSelectors":["_root"],"selector":"div[data-testid=\"menu-item-card\"]","type":"SelectorElement"},{"id":"link","multiple":false,"parentSelectors":["product_card"],"selector":"a.h-full","type":"SelectorLink"},{"clickElementSelector":"html:has([data-testid=\"menu-item-image\"]) .my-lg button.flex","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard","id":"Bag","multiple":true,"parentSelectors":["link"],"selector":"body","type":"SelectorElementClick"},{"clickElementSelector":"html:has([data-testid=\"menu-item-image\"]) a.flex.relative","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"View bag","multiple":true,"parentSelectors":["link"],"selector":"body","type":"SelectorElementClick"},{"id":"Delivery","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div[data-testid='delivery-fee']","type":"SelectorText"},{"clickElementSelector":"a.jsx-4a187f3cc6c394a3.text-xs","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":2000,"discardInitialElements":"discard","id":"Remove","multiple":true,"parentSelectors":["Delivery"],"selector":"div.m-none","type":"SelectorElementClick"},{"id":"Tax","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.text-sm.pt-md","type":"SelectorText"},{"clickElementSelector":"a[data-testid=\"remove-item-button\"]","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"remove-item","multiple":true,"parentSelectors":["link"],"selector":"_parent_","type":"SelectorElementClick"}]}