(customStrategy)
| 608 | } |
| 609 | |
| 610 | _lookupCustomLocator(customStrategy) { |
| 611 | if (typeof this.customLocatorStrategies !== 'object') { |
| 612 | return null |
| 613 | } |
| 614 | const strategy = this.customLocatorStrategies[customStrategy] |
| 615 | return typeof strategy === 'function' ? strategy : null |
| 616 | } |
| 617 | |
| 618 | _isCustomLocator(locator) { |
| 619 | const locatorObj = new Locator(locator) |
no outgoing calls
no test coverage detected