The following simple code runs over 100 times slower on Chrome than on Firefox:
0.9s Firefox
1m 51.3s Chrome
Something fishy must be going on, the only difference between test runs is the Browser setting in SessionConfiguration.
I'm new to Coypu, maybe I'm missing something obvious.
I know the HTML isn't great, but that doesn't explain the difference.
Thanks,
Andy
Code:
_browser.Fillin("Your message", "blah");
Html:
<body>
<div class="banner">
<div class="bannerLinks">
<div class="bannerLinksPlacement">
<a href="/about">about</a><a href="/terms">terms</a><a href="/faq">faq</a><a href="/contact">contact</a>
</div>
<div class="pageLogo">
<a href="/"><img src="/images/lantern-logo.png" alt="Lantern logo"/></a>
</div>
<div class="bannerLinksPlacementLeft">
</div>
</div>
</div>
<div class="outsideBlock">
<div class="mainBlock">
<div class="mainBlockContainer">
<h1>Contact us</h1>
<form action="/contact" method="post" class="dataform"><div style="margin-top: 1em;">Your email</div><input name="username" size="24" type="text" value=""/><div style="margin-top: 1em;">Your message</div><textarea name="message" rows="3" cols="50"></textarea><div><button type="submit">Send</button></div></form> </div>
</div>
</div>
<div class="footerSection">
<div class="footerLinks"></div>
<div class="footerText" style="margin-left: 80px;">© 2012 Checkin Technologies Ltd</div>
</div>
</body>