adventurerscodex / uat

Selenium testing for Adventurer's Codex
GNU General Public License v3.0
8 stars 5 forks source link

Bug: Timeout Exception #108

Open jkrooskos opened 6 years ago

jkrooskos commented 6 years ago

Browser

Chrome

Test File

conftest.py

Stacktrace

   @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:
jkrooskos commented 6 years ago

This appears to be more of an intermittent issue, than a specific issue.