Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

I don't really understand what the $ and $$ commands are for. I thought they are just a replacement for 'by.css' but why the $$?

<element id = "eId"></element>

I thought, that given the above, these would be equivalent:

element(by.css('#eId'));

and

element($('#eId'));

However, the first one works and the second doesn't. Why, what's the difference between the three?

The docs are of little help. They seem to imply that "$" is for chaining only, e.g. element(by.css('#eId')).element($('#childId')); or "Select the first element, and then select the second element within the first element.' However, I have seen examples with $ being used to select the first element.

Anyway, that's a lot of text for "What are the differences between the three (by.css, $, and $$)?"

1 Answer

0 votes
by (62.9k points)

$ and $$ are just suitable keyboard shortcuts.

 

$("selector")is an alternative for element(by.css("selector")).

 

$$("selector")is an alternative for element.all(by.css("selector")).

 

FYI, source code quotes :

ElementFinder.prototype.$ = function(selector) {

  return this.element(webdriver.By.css(selector));

};

 

ElementArrayFinder.prototype.$$ = function(selector) {

  return this.all(webdriver.By.css(selector));

};

And the real rejection that originally happened.

Browse Categories

...