Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a condition in protractor for when an element exists or not

I'm using Protractor JS. And the site is written in Angular JS.

So I have a toggle switch. And I noticed the value in the toggle switch goes from true to false and false to true when you switch it off or on.

I am trying create a condition when Protractor visits my page when it sees the toggle switch 'off' it will turn it 'on'. If the toggle switch is already 'on', it will first turn it 'off' then turn it 'on' again.

I came up with this code, but for some reason it is not working:

 if( expect(element(By.id('toggle-switch')).element(By.css('[value="false"]')).isDisplayed()) ) {             element(By.id('toggle-switch')).click();             console.log('in the if')        }         else{            element(By.id('toggle-switch')).click();            browser.sleep(3000);            element(By.id('toggle-switch')).click();            console.log('in the else')        } 

This code appears to work only for the if statement. For some reason it will never go to the else. Here is the error I'm receiving:

NoSuchElementError: No element found using locator: By.cssSelector("[value=\"false\"]")

So then I tried

.isPresent() instead of .isDisplayed() I don't receive the above error anymore, but for some reason when using .isPresent() it always goes to the if statement and only runs that, and never the else statement. No errors displayed.

If there is a better way please let me know. This seems very limiting to not be able to create proper conditions in this framework.

like image 593
adbarads Avatar asked Jan 14 '15 15:01

adbarads


People also ask

How do you know if a protractor element is disabled?

toBe([true|false]); to accurately verify if something is enabled/disabled. If that isn't working for you, there's probably something else going on. Taylor is right, isEnabled() is the correct way to do it.


1 Answers

Remember that isDisplayed() returns a promise, you can try with:

element(anyFinder).isDisplayed().then(function(result) {     if ( result ) {         //Whatever if it is true (displayed)     } else {         //Whatever if it is false (not displayed)     } }); 
like image 134
Lautaro Cozzani Avatar answered Oct 06 '22 08:10

Lautaro Cozzani