Axes metods in Xpath
An axis represents a relationship to the context (current) node, and is used to locate nodes relative to that node on the tree. Examples: Navigate to https://google.com.. //textarea[@name=’q’]//..//child::textarea //textarea[@name=’q’]//..//parent::div //textarea[@name=’q’]//self::textarea Read more »
AND, OR operators in Xpath
//input[@value=’Google Search’ and @aria-label=’Google Search’] Read more »
Xpath: Contains fucntion
example: //input[contains(@aria-label,’Google Search’)][1] Read more »
C# Class
C# Class: Reference types A type that is defined as a Class is a reference type. At run time, when you declare a variable of a reference type, the variable contains Read more »
Frameworks for Node.js
Frameworks for Node.js: A third party framework is used in Node.js to make its development easy and quick. Node Package Manager or NPM provides a list of open source frameworks Read more »
Node.js EventEmitter
NodeJS EventEmitter: An action performed is termed as an event. Node.js is faster than other frameworks as it uses event driven programming technique. An event is more or less Read more »
