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.

Sahi Controller doesn't open with Chrome Version 24.0.1312.52 m

jaskiratsinghjaskiratsingh Members
edited January 2013 in Sahi - Open Source
I have updated my chrome to Version 24.0.1312.52 m and not sahi os controller stopped opening. I have checked the same with Alt, Alt+Ctrl, turned off popup blocker but still no luck. I checked the same on another machine and the same issue happened i.e. sahi controller doesnt open after updating chrome to the latest version.

A fix or workaround will be appreciated.

Best Answers

  • Answer ✓
    Hi Jaskirat,

    I can confirm this behaviour. Looking into possible fix.

    Regards,
    Narayan
  • Answer ✓
    Hi Jaskirat,

    Not sure what is going on, but here is the workaround.

    Open sahi/htdocs/spr/concat.js

    Look for
    Sahi.prototype.openControllerWindow
    
    . Replace the full function so that it looks like:
    Sahi.prototype.openControllerWindow = function (e) {
        if (!e) e = window.event;
        if (!this.isHotKeyPressed(e)) return true;
        if (this._isChrome()) {
            window.setTimeout(function(){_sahi.topSahi().openWin(e)}, 100);
        } else {
            this.topSahi().openWin(e);
        }
        return true;
    };
    

    Next search for
    _sahiControl
    
    in the same file and replace it with
    sahiControl
    
    . (You should see 2 occurrences.)

    Restart Sahi, clear browser cache and check.

    Regards, Narayan

Answers

Sign In or Register to comment.