Fixed broken playwright-core import
This commit is contained in:
parent
f058ca647c
commit
932785b132
|
|
@ -14,7 +14,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { assertUnreachableWithError } from 'playwright-core/lib/common/types';
|
import { assertUnreachableWithError } from '../../common/types';
|
||||||
import { parseEvaluationResultValue } from '../isomorphic/utilityScriptSerializers';
|
import { parseEvaluationResultValue } from '../isomorphic/utilityScriptSerializers';
|
||||||
import * as js from '../javascript';
|
import * as js from '../javascript';
|
||||||
import type { BidiSession } from './bidiConnection';
|
import type { BidiSession } from './bidiConnection';
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ import { isElementVisible, parentElementOrShadowHost } from './domUtils';
|
||||||
import { type LayoutSelectorName, layoutSelectorScore } from './layoutSelectorUtils';
|
import { type LayoutSelectorName, layoutSelectorScore } from './layoutSelectorUtils';
|
||||||
import { elementMatchesText, elementText, shouldSkipForTextMatching, type ElementText } from './selectorUtils';
|
import { elementMatchesText, elementText, shouldSkipForTextMatching, type ElementText } from './selectorUtils';
|
||||||
import { normalizeWhiteSpace } from '../../utils/isomorphic/stringUtils';
|
import { normalizeWhiteSpace } from '../../utils/isomorphic/stringUtils';
|
||||||
import { assertUnreachableWithError } from 'playwright-core/lib/common/types';
|
import { assertUnreachableWithError } from '../../common/types';
|
||||||
|
|
||||||
type QueryContext = {
|
type QueryContext = {
|
||||||
scope: Element | Document;
|
scope: Element | Document;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue