我正在使用CodeCeption来测试网站的工作。我从来没有使用CodeCeption,我只是想让我的第一个测试工作。我只是想登录,但我的登录框是使用jQuery UI(这意味着登录按钮没有ID)。该网站为https://moveyourmountain.org
我在Chome控制台中使用了这个:
$x('//button/span[text()="Login"]')
得到了这个回复:
[<span class="ui-button-text">Login</span>]
所以我的xpath是正确的,并选择正确的东西。但是,在CodeCeption中我有这个:
$I = new AcceptanceTester($scenario);
$I->wantTo('Login as a regular user.');
$I->amOnPage('/');
$I->click('LOGIN');
$I->fillField('email', 'some@one.com');
$I->fillField('password', 'test123');
$I->click(['xpath' => '//button/span[text()="Login"]']);
$I->see('MY ACCOUNT');
每次我运行它,我都会在终端上找到它:
Sorry, I couldn't click {"xpath":"//button/span[text()="Login"]"}:
Element with xpath '//button/span[text()="Login"]' was not found on page.
Scenario Steps:
5. I click {"xpath":"//button/span[text()="Login"]"}
4. I fill field "password","test123"
3. I fill field "email","some@one.com"
2. I click "LOGIN"
1. I am on page "/"
如果有所作为,我正在使用PhpBrowser。任何帮助表示赞赏。我不知道如何进行测试,因为它显然不像chrome那样解析。
答案 0 :(得分:1)
尝试更改您的acceptance.suite.yml。
而不是PhpBrowser使用WebDriver。