Hi Patrick,
we are setting up some new agents at the moment. Cause of some trouble with virtualized agents and time synchronization we mainly use physical agents. But we want to give it a try with vmware this time.
We observe strange results with a test which measures the last step of a sequence. With this last step the communication switches to HTTPS.
Script:
[code]
logData 0
/// product 1 in basket
navigate http://www.otto.de/suche/?commit=true&ls=0&commit=true&fh_search=shirt&&fh_search_requested=shirt&sterm=shirt&stype=N
execAndWait document.querySelector(‘#p0 a.js_ProductListProductRef’).click();
execAndWait document.getElementById(‘TconImgAddToBasket’).click();
/// product 2 in basket
navigate http://www.otto.de/suche/?commit=true&ls=0&commit=true&fh_search=brille&&fh_search_requested=brille&sterm=brille&stype=N&SelectRuleEngineVariants=0
execAndWait document.querySelector(‘#p0 a.js_ProductListProductRef’).click();
execAndWait document.getElementById(‘TconImgAddToBasket’).click();
/// product 3 in basket
navigate http://www.otto.de/suche/?commit=true&ls=0&commit=true&fh_search=bikini&&fh_search_requested=bikini&sterm=bikini&stype=N&SelectRuleEngineVariants=0
execAndWait document.querySelector(‘#p0 a.js_ProductListProductRef’).click();
execAndWait document.getElementById(‘TconImgAddToBasket’).click();
/// product 4 in basket
navigate http://www.otto.de/suche/?commit=true&ls=0&commit=true&fh_search=adidas&&fh_search_requested=adidas&sterm=adidas&stype=N&SelectRuleEngineVariants=0
execAndWait document.querySelector(‘#p0 a.js_ProductListProductRef’).click();
execAndWait document.getElementById(‘TconImgAddToBasket’).click();
/// product 5 in basket
navigate http://www.otto.de/suche/?commit=true&ls=0&commit=true&fh_search=nike&&fh_search_requested=nike&sterm=nike&stype=N&SelectRuleEngineVariants=0
execAndWait document.querySelector(‘#p0 a.js_ProductListProductRef’).click();
execAndWait document.getElementById(‘TconImgAddToBasket’).click();
logData 1
execAndWait document.getElementById(‘TconImgGotoBasket’).click();[/code]
Strange about this is that we run this script on 6 different vmware-agents and some deliver correct results with about 3-4 secs doc ready-time (with 6 mbit/s down and 512 kbit/s upload-bw). But some deliver a constant doc ready time of about 74 (!) secs. You can watch this behaviour on respective agent and the rendering of the measured page feels like 54k-modem or something. While the previous steps (HTTP) render with the nomal speed. The problem is that ttfb and download time is very long for some static content (mainly images):
[attachment=308]
The agents switch bahaviour between loading normal and strange with daily reboot (and even without reboot from time to time), but unfortunately we don’t know why and due to what…
Strange behaviour just with IE (we run version 8). If we load same page of same sequence in IE8 on the agent, manually, everything seems OK.
Same script never showed as long doc ready-times on physical agents.
Ever observed something similar, any ideas?
Regards, Nils