'Cypress: I need to loop through table column and check if column has certain child element then extract that value otherwise get the column text

let result = []; cy.get('.ppl-keywords .addedKW table tbody tr td.matchType').each(($td) => {

  if ($td.find('.expand-btn__cell').length > 0) {
  
    cy.wrap($td).find('.expand-btn__cell').invoke('text').then((kw) => { 

      result.push(kw)
    })
  }
  else {
    cy.wrap($td).invoke('text').then((kw) => {
      result.push(kw)
    })
  }

})

return cy.wrap(result)


Solution 1:[1]

Look for the MIN_NOTIONAL filter in the exchangeInfo endpoint. It's unique for each pair symbol.

Path symbols[<index>].filters contains an array of filters. One of them should always have filterType value MIN_NOTIONAL. The value in minNotional is the minimal order amount in the quote currency (in your case USDT).

Docs: https://binance-docs.github.io/apidocs/spot/en/#filters

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Petr Hejda