After the redirect is triggered;
The page I am attempting to captcher is content launched from a script;
Is it still possible to captcher that information? I have parsed the script into HTML by selecting what text I wanted to captcher using firefox which displays as;
I am wanting to captcher the following;
XX.99 (Order Amount)
Sun, XX Jul 20XX (Order Date)
The config I made works great, but its not captchering any of the data which I am putting down to the fact its a script however should that matter or am I doing something completely wrong here? My parsing code is also fine.
Code:
<-----Bot Status: Redirect Condition Triggered -> Calling Redirect URL----->
The page I am attempting to captcher is content launched from a script;
Code:
<script>yourAccountFeatureEnabled['orderSummary'] = true</script>
Is it still possible to captcher that information? I have parsed the script into HTML by selecting what text I wanted to captcher using firefox which displays as;
Code:
<header class="panel-heading" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0"><strong class="panel-section" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.0">Sun, XX Jul 20XX</strong><div class="panel-section" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1"><span data-bdd-test-id="yourOrderSummaryOrderNumber" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.0"><span data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.0.0">Order No: </span><strong data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.0.1">61XXXXX352</strong></span><span data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.1"><span data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.1.0">Total: </span><strong class="product-price" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.1.1.1">XX.99</strong></span></div><a href="OrderDetails?orderNumber=XXXXXXXXXX" class="panel-section btn-link-chev" data-reactid=".0.1.2.0.1.1.0:0.$0.0.0.2">View order details</a></header>
I am wanting to captcher the following;
XX.99 (Order Amount)
Sun, XX Jul 20XX (Order Date)
The config I made works great, but its not captchering any of the data which I am putting down to the fact its a script however should that matter or am I doing something completely wrong here? My parsing code is also fine.