我按照教程完成了谷歌登录集成。 登录成功。以数组形式显示数据。 我想将google-id,名称,电子邮件和图像路径存储到我的数据库中。 它没有将细节存储到数据库中。 请仔细研究一下..
代码
describe('Demo test', () => {
beforeEach(() => {
browser.get('http://www.protractortest.org/#/');
browser.driver.executeScript(disableCSSAnimation);
function disableCSSAnimation() {
var css = '* {' +
'-webkit-transition-duration: 0s !important;' +
'transition-duration: 0s !important;' +
'-webkit-animation-duration: 0s !important;' +
'animation-duration: 0s !important;' +
'}',
head = document.head || document.getElementsByTagName('head')[0],
style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
head.appendChild(style);
}
});
it('Should go to Protractor test page', () => {
expect(browser.getTitle()).toEqual('Protractor - end-to-end testing for AngularJS')
});
});