Skip to content
Snippets Groups Projects
Commit e96e10d0 authored by Christian Kuhn's avatar Christian Kuhn
Browse files

[TASK] Raise styleguide to 8.0.12

A series of bug fixes and most TCA example records
are now multi language aware and the generator creates
multi language data records.

Change-Id: I5fca90642fde64269d08c9fc9f41ad5f949ed8ef
Resolves: #81441
Releases: master, 8.7
Reviewed-on: https://review.typo3.org/53051


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent 988fc3d7
Branches
Tags
No related merge requests found
......@@ -3465,16 +3465,16 @@
},
{
"name": "typo3/cms-styleguide",
"version": "8.0.11",
"version": "8.0.12",
"source": {
"type": "git",
"url": "https://github.com/TYPO3/styleguide.git",
"reference": "4e5ae0014a7a3903386ba7071eed383077d2b1a8"
"reference": "0a1ab0e425f5033f1c7329975565996c7c2da6f8"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/TYPO3/styleguide/zipball/4e5ae0014a7a3903386ba7071eed383077d2b1a8",
"reference": "4e5ae0014a7a3903386ba7071eed383077d2b1a8",
"url": "https://api.github.com/repos/TYPO3/styleguide/zipball/0a1ab0e425f5033f1c7329975565996c7c2da6f8",
"reference": "0a1ab0e425f5033f1c7329975565996c7c2da6f8",
"shasum": ""
},
"replace": {
......@@ -3510,7 +3510,7 @@
"typo3",
"typo3 backend"
],
"time": "2017-04-19T19:55:33+00:00"
"time": "2017-06-02T15:58:51+00:00"
},
{
"name": "typo3/testing-framework",
......
......@@ -80,15 +80,18 @@ class Inline1nCest
$fieldLabel = 'input_1';
$testValue = 'Fo Bar';
$this->fillFieldByLable($I, $fieldLabel, $testValue);
$this->fillFieldByLabel($I, $fieldLabel, $testValue);
$I->click('button[name="_savedok"]');
$I->wait(3);
$I->click('a[title="Close"]');
$I->wait(3);
$I->executeJS('$(\'a[data-table="pages_language_overlay"] .icon-actions-view-list-collapse\').click();');
$I->wait(1);
$I->see('lipsum', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(1) > td:nth-child(2) > a');
$I->see('Fo Bar', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > a');
$I->see('Fo Bar', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(2) > a');
}
/**
......@@ -104,9 +107,12 @@ class Inline1nCest
$I->click('a[title="Close"]');
$I->wait(3);
$I->executeJS('$(\'a[data-table="pages_language_overlay"] .icon-actions-view-list-collapse\').click();');
$I->wait(1);
$I->wantTo('Check new sorting');
$I->see('Fo Bar', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(1) > td:nth-child(2) > a');
$I->see('lipsum', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > a');
$I->see('Fo Bar', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(2) > td:nth-child(2) > a');
$I->see('lipsum', '#recordlist-tx_styleguide_inline_1n_child > div:nth-child(1) > table:nth-child(1) > tbody:nth-child(2) > tr:nth-child(3) > td:nth-child(2) > a');
}
/**
......@@ -151,7 +157,7 @@ class Inline1nCest
* @param $fieldLabel
* @param $testValue
*/
protected function fillFieldByLable(Admin $I, $fieldLabel, $testValue)
protected function fillFieldByLabel(Admin $I, $fieldLabel, $testValue)
{
$fieldContext = $I->executeInSelenium(function (\Facebook\WebDriver\Remote\RemoteWebDriver $webdriver) use (
$fieldLabel
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment