Open jkrooskos opened 6 years ago
Chrome
conftest.py
@pytest.fixture(scope='function') def player_wizard(browser): """Navigate through the player wizard.""" wizard_main = NewCharacterCampaign(browser) who_are_you = wizard.WhoAreYou(browser) ability_scores = wizard.AbilityScoresManual(browser) WebDriverWait(browser, 15).until( EC.element_to_be_clickable( (By.ID, wizard_main.get_started_id) ) ) wizard_main.get_started.click() WebDriverWait(browser, 15).until( EC.element_to_be_clickable( (By.ID, wizard_main.player_id) ) ) wizard_main.player.click() WebDriverWait(browser, 15).until( EC.element_to_be_clickable( (By.ID, wizard_main.next_id) ) ) wizard_main.next_.click() who_are_you.character_name = 'Test Char' who_are_you.player_name = 'Automated Testing Bot.' WebDriverWait(browser, 15).until( EC.element_to_be_clickable( > (By.ID, wizard_main.next_id) ) ) conftest.py:171:
This appears to be more of an intermittent issue, than a specific issue.
Browser
Chrome
Test File
conftest.py
Stacktrace