CodeExplorer assertSelectorTextContains example
new LogicalNot(new DomCrawlerConstraint\
CrawlerAnySelectorTextContains($selector,
$text)) ),
$message);
} public static function assertPageTitleSame(string
$expectedTitle, string
$message = ''
): void
{ self::
assertSelectorTextSame('title',
$expectedTitle,
$message);
} public static function assertPageTitleContains(string
$expectedTitle, string
$message = ''
): void
{ self::
assertSelectorTextContains('title',
$expectedTitle,
$message);
} public static function assertInputValueSame(string
$fieldName, string
$expectedValue, string
$message = ''
): void
{ self::
assertThat(self::
getCrawler(), LogicalAnd::
fromConstraints( new DomCrawlerConstraint\
CrawlerSelectorExists("input[name=\"
$fieldName\"]"
),
new DomCrawlerConstraint\
CrawlerSelectorAttributeValueSame("input[name=\"
$fieldName\"]", 'value',
$expectedValue) ),
$message);
} public static function assertInputValueNotSame(string
$fieldName, string
$expectedValue, string
$message = ''
): void
{