brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
| // Thanks to @MonsieurDart for the idea :) | |
| func scroll(collectionView:XCUIElement, toFindCellWithId identifier:String) -> XCUIElement? { | |
| guard collectionView.elementType == .collectionView else { | |
| fatalError("XCUIElement is not a collectionView.") | |
| } | |
| var reachedTheEnd = false | |
| var allVisibleElements = [String]() | |
| while !reachedTheEnd { |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"