Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestion: seeElementHasClass() #126

Open
ThomasLandauer opened this issue Apr 16, 2024 · 0 comments
Open

Suggestion: seeElementHasClass() #126

ThomasLandauer opened this issue Apr 16, 2024 · 0 comments

Comments

@ThomasLandauer
Copy link
Member

I wrote a simple method for App\Tests\Support\Helper\Acceptance to check if an HTML element has a certain CSS class. Does the same as JavaScript .classList.contains():

public function seeElementHasClass(array|string $element, string $class): void
{
    $I = $this->getModule('WebDriver');
    $classesString = $I->grabAttributeFrom($element, 'class');
    $classesArray = explode(' ', $classesString);
    $this->assertContains($class, $classesArray);
}

public function dontSeeElementHasClass(array|string $element, string $class): void
{
    $I = $this->getModule('WebDriver');
    $classesString = $I->grabAttributeFrom($element, 'class');
    $classesArray = explode(' ', $classesString);
    $this->assertNotContains($class, $classesArray);
}

Maybe somebody could add it to the module? :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant