X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=tests%2Fphpunit%2FWebTest%2FContact%2FAddressParsingTest.php;h=26ff03e10ecad27248705b8a0fe2b7638d374f85;hb=fc0a5af621552dea17114a6a92854786429d6da5;hp=82bfc80cec6ff12ace257cc17fc2f565873a2669;hpb=a953e3e44d504c65ced19fac8c7ab8087d5f2072;p=civicrm-core.git diff --git a/tests/phpunit/WebTest/Contact/AddressParsingTest.php b/tests/phpunit/WebTest/Contact/AddressParsingTest.php index 82bfc80cec..26ff03e10e 100644 --- a/tests/phpunit/WebTest/Contact/AddressParsingTest.php +++ b/tests/phpunit/WebTest/Contact/AddressParsingTest.php @@ -1,7 +1,7 @@ webtestLogin(); @@ -96,7 +96,7 @@ class WebTest_Contact_AddressParsingTest extends CiviSeleniumTestCase { $this->type("address_4_street_address", "121 SW Sherman Way Suite 15"); $this->type("address_4_city", "Birmingham"); $this->type("address_4_postal_code", "5491"); - $this->assertTrue($this->isTextPresent("- select - United States")); + $this->assertSelected('address_4_country_id', "United States"); $this->select("address_4_state_province_id", "value=1002"); // Store location type of each address @@ -121,7 +121,9 @@ class WebTest_Contact_AddressParsingTest extends CiviSeleniumTestCase { $this->waitForElementPresent("address_{$i}_street_address"); $address[$i] = $location[$this->getSelectedLabel("address_{$i}_location_type_id")]; // Open "Edit Address Elements" - $this->click("//table[@id='address_{$i}']//a[text()='Edit Address Elements']"); + $this->waitForElementPresent('addressBlockId'); + $this->click('addressBlockId'); + $this->click("//table[@id='address_table_{$i}']//a[text()='Edit Address Elements']"); } //verify all the address fields were parsed correctly @@ -155,4 +157,3 @@ class WebTest_Contact_AddressParsingTest extends CiviSeleniumTestCase { } } } -