すみません。素人で
https://teratail.com/questions/359825 に引き続き新たなるうまくてかない所があります。
サンプルコード
import pytest from pytest_bdd import scenario, given, when, then, parsers from selenium import webdriver import chromedriver_binary from selenium.webdriver.common.keys import Keys GOOGLE_HOME = 'https://www.google.com/' # Scenarios @scenario('web.feature', 'ググる') def test_web(): pass # Fixtures @pytest.fixture def browser(): b = webdriver.Chrome() b.implicitly_wait(10) yield b b.quit() # Given Steps @given(parsers.parse('<url>のホームページが表示される')) def ddg_home(browser, url): browser.get(url)
web.feature
Feature: webでブラウジング Scenario Outline: ググる Given <url>のホームページが表示される Examples: | url| | https://www.google.com | | https://www.yahoo.co.jp |
こんな感じにしたいですが @given('<url>のホームページが表示される') にしても見つかりません。
どなたかサンプルなどよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。