Power Automate Desktop - Desktop flows
I am using PAD for extracting data from web page - for few instances I am getting the JS code as output instead of exact text values.
If it happens for all the values then it is issue itself but it happens randomly for some web pages.
Sample code output instead of text value
$(document).ready(function () { $("#EnteredQuantity").keydown(function (event) { if (event.keyCode == 13) { $("#add-to-cart-button-18205").click(); return false; } }); $(".add-to-cart-button").click(function (e) { var ProductId = $(this).attr("data-productId"); var EnteredQuantity = $("#entered-quantity-" + ProductId).val(); var AddToCartUrl = "/addproducttocart/catalog/" + ProductId + "/1/" + EnteredQuantity; console.log(AddToCartUrl); AjaxCart.addproducttocart_catalog(AddToCartUrl); return false;
}); }); |
But the value for other web pages where the data is extracted is "Product ABC (58 units)".
Any help on this issue will be greatly appreciated