Open firecentaur opened 9 years ago
Hello, at the moment protractor is not supported by wallaby.js.
+1
+1
any progress in being able to support protractor?
@DinisCruz We haven't started looking into it yet.
+1
+1
I am having the same issue I just discovered with wallaby, it tells me that browser is not defined, but when I run the protractor it is passing (or failing) depending on the test.
+1
+1
+1
@ArtemGovorov I take back my +1... I am really happy you guys haven't supported protractor yet. It is a terrible terrible test framework and is riddled with issues everywhere. I am migrating away from it on all projects that I work on. WebdriverJS is perfectly fine, but protractor is really awful.
+1
Hi there, I am getting protractor is not defined
How can I include progractor so I can use it in my test:
describe('login', function () { var login = function () { var deferred = protractor.promise.defer(); browser.get("http://newapp.com") element(By.id("logoutButton")).isPresent().then(function (logged_in) { if (logged_in) { console.log("\n\nwe are already logged in"); deferred.fulfill(logged_in); return deferred.promise;