1.3.4
Selenium 4.1.2 and custom location strategy
New Features
-
added Configuration._locationStrategy
to customize the conversion from string selector to By in element builders
like browser.element(selector), browser.all(selector),
element.element(selector), element.all(selector)
By default equals to built in Extensions.cssOrXpathToBy function
that is as simple as:export function cssOrXPathToBy(selector: string): By { const cssOrXPath = selector.trim(); const isXpath = (str: string) => ( str.startsWith('/') || str.startsWith('./') || str.startsWith('..') || str.startsWith('(') || str.startsWith('*/') ); return isXpath(cssOrXPath) ? by.xpath(cssOrXPath) : by.css(cssOrXPath); }
Hence you can provide any other custom conversion fn;)
For example adapt selenidejs for appium with corresponding mobile selectors,
see an example for android at github.com/automician/selenidejs-mobile-test-appium-ts-template with usage in test by link- !NOTE! The option starts with underscore dangle.
In selenidejs the underscore dangle is used as a mark of "experimental" featues
that might change in future releases.
Speaking about_locationStrategy
either its name of signature of fn value can be changed
- !NOTE! The option starts with underscore dangle.
CHANGES
- update selenium to 4.1.2