Skip to content Skip to sidebar Skip to footer
Showing posts with the label Protractor

Verify Beacon(https Request) On The Page Using A Protractor Test

I am writing a protractor test to verify that a request is firing/present on the page load. Is ther… Read more Verify Beacon(https Request) On The Page Using A Protractor Test

Scroll Down To An Element With Protractor

I have an element on the page that I'm testing that I have to scroll down to be visible. When I… Read more Scroll Down To An Element With Protractor

How Can I Make Protractor Not Wait For $timeout?

I'm testing my angular application with Protractor. Once the user is logged in to my app, I set… Read more How Can I Make Protractor Not Wait For $timeout?

Failed: Cannot Read Property 'all' Of Undefined

We have been using protractor.promise.all([promise1, promise2, promise3]) extensively to resolve mu… Read more Failed: Cannot Read Property 'all' Of Undefined

Running Grunt Task Multiple Times Until It Fails

What is the canonical way to run the same grunt task continuously, multiple times until it fails? … Read more Running Grunt Task Multiple Times Until It Fails

How Do I Handle An Array Of Promises Using Protractor W/ Chai-as-promised

I am using Protractor with CucumberJS and chai-as-promised (given that CucumberJS does not have a b… Read more How Do I Handle An Array Of Promises Using Protractor W/ Chai-as-promised

Protractor + Simple-ssh How To Get It Sync Together In Jasmine

I'm writing some e2e tests with protractor . During one test I have to physically connect to de… Read more Protractor + Simple-ssh How To Get It Sync Together In Jasmine

Difference Running Protractor With/without Selenium?

Checking the protractor documentation, I see there is a option to run protractor without using Sele… Read more Difference Running Protractor With/without Selenium?

What Is `browser.call()` For In Protractor?

I've recently being going through the Protractor API and noticed the browser.call() method: Sc… Read more What Is `browser.call()` For In Protractor?

Spreading Promises In Protractor

q library has this neat feature to resolve and spread multiple promises into separate arguments: I… Read more Spreading Promises In Protractor

Protractor And For Loops

I have a question concerning below code for test in Protractor. Namely as you can see firstly I fin… Read more Protractor And For Loops

Some Protractor Tests Are Skipped

When I launch protractor conf.js and this file needs to launch multiple spec files (like below), so… Read more Some Protractor Tests Are Skipped

Protractor Not Able To Move Price Slider

I am new to protractor, trying to test price slider which may sort products based on provided price… Read more Protractor Not Able To Move Price Slider

Protractor Drag And Drop

I have a list of elements so i want to write a function to drag those elements into a container tha… Read more Protractor Drag And Drop

Is There A Configuration In Cucumberjs To Take Screenshot On Error?

using CucumberJS Is there an option or configuration to capture screenshot on error after the execu… Read more Is There A Configuration In Cucumberjs To Take Screenshot On Error?

Can't Access Array From Within Protractor Callback

I'm new to both protractor and javascript. I ran into a scoping issue which I can't figure … Read more Can't Access Array From Within Protractor Callback

Locate Element By A Presence Of A Custom Attribute

How do you locate all those elements that has particular custom attribute in Protractor? I found si… Read more Locate Element By A Presence Of A Custom Attribute

Unable To Generate Report When Using Jasmine-reporters In Protractor

i Used the following code in config var jasmineReporters = require('jasmine-reporters'); … Read more Unable To Generate Report When Using Jasmine-reporters In Protractor

Protractor: How Should I Propagate An Error From Within Browser.executeAsync?

If from a Protractor spec, I execute a script within browser.executeAsyncScript, how should I commu… Read more Protractor: How Should I Propagate An Error From Within Browser.executeAsync?

Element Is Not Currently Visible And So May Not Be Interacted With When Clicking A Button

My Protrator code is element(by.dataHook('delete-button')).click(); Getting: Element is … Read more Element Is Not Currently Visible And So May Not Be Interacted With When Clicking A Button