var MyPagePO = require('mypage.po.js');
describe('Login Page Tests.', function () {
var myPagePO = new MyPagePO();
beforeEach(function () {
//...
});
it('Some case.', function () {
expect(myPagePO.emailInput.getText()).toBe('some');
expect(myPagePO.title.getText()).toBe('some');
});
});
<a href="#link1">link one text,
<a href="link2">link two text</a>
link1 on continue.</a>
答案 0 :(得分:1)
public IEnumerable<object> PorcentajeState(Guid id)
{
return _context.Sates.Where(a => a.Id == id)
.GroupBy(a => a.StateId)
.Select(g => new { g.Key, Count = g.Count() });
}
public IEnumerable<object> PorcentajeState(Guid id)
{
return _context.Sates.Where(a => a.Id == id)
.GroupBy(a => a.StateId)
.Select(g => new { g.Key.StateId, Count = g.Count() });
}
<强>小提琴强> Demo
答案 1 :(得分:0)
普通的html无法做到这一点。我认为,这也会让用户感到非常困惑。你究竟想做什么?