18 January 2026:


This forum is now archived and is in read-only mode. Please continue discussions on our improved new Sahi Pro Community forum.



Sahi Pro is an enterprise grade test automation platform which can automate web, mobile, API, windows and java based applications and SAP.

Firefox 20.0 giving issues to anyone?

gargvipulgargvipul Members
edited April 2013 in Sahi - Open Source
Firefox released version 20.0 on April 2nd 2013. A lot of my tests started to fail after upgrading to FF 20.0.

Sahi is not able to set value in text boxes.

Html code below.

<form id = "loginForm" action="/login" method="post">
<p>
SIGN-IN NAME : <input type="text" name="email" />
</p>
<p>
PASSWORD:
<input type="password" name="password" id="password" />
</p>
<p>
<input type="button" id="signin" value="SIGN IN" />
</p>
</form>


Anyone else facing similar issue?

Answers

  • Sahi is not able to set value in text boxes.
    i have same issue.
  • same here with me, setting the value of a textbox does not work.
  • nickleusnickleus Members
    edited April 2013
    same here.

    @gargvipul can you update your issue with your sahi version and put _setValue() in the post title?

    i'm using ubuntu 12.04 and firefox just updated to version 20.0 and now i can't _setValue() anymore. i'm using sahi OS v35. everyone please vote this issue up! i've written a tweet to sahi asking them to look at this. maybe everyone else should to. this issue is a show-stopper!

    I've messaged them on facebook:
    https://www.facebook.com/sahi.software/posts/312072048921194

    and twitter:
    https://twitter.com/_sahi

    and their contact page:
    http://sahi.co.in/contact-us/

    this issue also applies to Sahi Pro: http://sahi.co.in/forums/discussion/4784/_setvalue-in-firefox-20

    ***chrome (version 26.0.1410.43) still works, so i guess we'll have to use that for now.***
  • to make it work again in firefox. I uninstalled, installed it once again and blocked firefox from automatically updating again.

    This is not such a good solution, but till SAHI is fixed for version 20, we can do this.
  • to keep u posted, they are looking into it.
  • SCKSCK Members
    Glued to this thread, this is a showstopper.

    Sreekanth - Downgrading FF is not a solution at all. But as you mentioned, left with NO other option till SAHI developers fix it.
  • bump
  • Hi,

    We are working on that and will provide a solution soon

    Regards,
    Pratik Shah
  • narayannarayan Administrators
    Sorry for the delay guys. Open sahi/htdocs/spr/concat.js and look for:
    Sahi.prototype._isFF2 = function () {return /Firefox\/2|Iceweasel\/2|Shiretoko\/2/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF3 = function () {return /Firefox\/3|Iceweasel\/3|Shiretoko\/3/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF4 = function () {return /Firefox\/4|Iceweasel\/4|Shiretoko\/4/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF5 = function () {return /Firefox\/5|Iceweasel\/5|Shiretoko\/5/.test(this.navigator.userAgent);};
    

    and replace it with
    Sahi.prototype._isFF2 = function () {return /Firefox\/2[.]|Iceweasel\/2[.]|Shiretoko\/2[.]/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF3 = function () {return /Firefox\/3[.]|Iceweasel\/3[.]|Shiretoko\/3[.]/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF4 = function () {return /Firefox\/4[.]|Iceweasel\/4[.]|Shiretoko\/4[.]/.test(this.navigator.userAgent);};
    Sahi.prototype._isFF5 = function () {return /Firefox\/5[.]|Iceweasel\/5[.]|Shiretoko\/5[.]/.test(this.navigator.userAgent);};
    

    Restart Sahi, clear browser cache and check.

    Regards,
    Narayan
  • ChaniChani Members
    Narayan,
    Replacing with the new code did work, but the assertion are very slow. Overall, the playback is not as fast as it was with prev. version of FF.
  • narayannarayan Administrators
    Hi Chani,
    Do you also see "[Auto]" in the logs. If you do see this, we have fixed this in the upcoming build.
    Regards,
    Narayan
  • seems to work, thanks guys! haven't noticed much difference in speed :)
  • It is working now, thank you.
  • NaomiCNaomiC Members
    Where can I download the latest build with this fix? V4.3 was released back in February.
Sign In or Register to comment.