Headless Browser Challenge is not passing even though everything looks fine

Headless Browser Challenge is not passing even though everything looks fine

I am in challenge #23 in #Quality Assurance with CHAI & ZOMBIE.
But even though everything looks so far so good but the FreeCodeCamp API is always rejecting the Glitch.com code & made my challenges incomplete. It also affecting the #24th Challenge. Also the browser site URL seems to be blocked in Glitch/Gomix for Violating Terms of Service. PBR. Now, I’m sure its a wrong URL…So, I’m now in need of the correct URL…If Somebody know or have passed the test with any other URL, please give me the through comment!!

My code so far

//This is the wrong part
var Browser = require('zombie');

  // On Gomix we'll use this setting
  /** ### Copy your project's url here  ### **/
  Browser.site = 'https://sincere-cone.gomix.me'; 

test('#example - submit the input "surname" : "Polo"', function(done) {
        browser
          .fill('surname', 'Polo')
          .pressButton('submit', function(){
            // pressButton is ## Async ##.  
            // It waits for the ajax call to complete...

            // assert that status is OK 200
            browser.assert.success();
            // assert that the text inside the element 'span#name' is 'Marco'
            browser.assert.text('span#name', 'Marco');
            // assert that the text inside the element 'span#surname' is 'Polo'
            browser.assert.text('span#surname', 'Polo');
            // assert that the element(s) 'span#dates' exist and their count is 1
            browser.assert.element('span#dates', 1);

            done();   // It's an async test, so we have to call 'done()''
          });
      });

Challenge: Run Functional Tests using a Headless Browser

Link to the challenge: