module-webdriver icon indicating copy to clipboard operation
module-webdriver copied to clipboard

WebDriver module for Codeception

Results 44 module-webdriver issues
Sort by recently updated
recently updated
newest added

#### What are you trying to achieve? I am trying to fill the field with a simple value. #### What do you get instead? The value is appended at the...

I want to push url where test failed in standard html report ### Details support/MyHelper.php I have this code: ```php public function _failed(TestInterface $test, $fail) { $url = $this->getModule('WebDriver')->_getCurrentUri(); //HOW...

#### What are you trying to achieve? Run an Acceptance test on a set of tabs. #### What do you get instead? A variety of errors where $I can click...

#### What are you trying to achieve? I'm trying to use `seeInPopup` after pressing a button that activates a popup. Unfortunately, the popup doesn't show up immediately, since it has...

#### What are you trying to achieve? With _saveScreenshot function, it will be good if it can get full screen result, similar like codeceptjs. https://github.com/Codeception/CodeceptJS/issues/522 #### What do you get...

### What are you trying to achieve? (Expected behavior) A shortcut match() selector for data attributes. ### What do you get instead? (Actual behavior) Need to specify the whole css...

#### What are you trying to achieve? We are trying to click an element in a webpage. #### What do you get instead? Wrong element (the left or the right...

#### What are you trying to achieve? #### What do you get instead? > Provide console output if related. Use `-vvv` mode for more details. ```bash # paste output here...

I have a [Bootstrap custom radio button](https://getbootstrap.com/docs/4.5/components/forms/#radios): ```html Whatever ``` When I do this in an acceptance test: ```php $I->selectOption('input[name="form[foo]"]', 'Whatever:'); ``` or ```php $I->click(['css' => '#form_foo_0']); ``` ...I'm getting:...

Next problem with [Bootstrap custom radio button](https://getbootstrap.com/docs/4.5/components/forms/#radios) after https://github.com/Codeception/module-webdriver/issues/21 `seeNumberOfElements()` doesn't count those radiobuttons: ```html ``` This is probably because of `z-index:-1` in Bootstrap's CSS: ```css .custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.22rem;opacity:0} ``` Background: When...