js = @"(function (){ return document.querySelectorAll('a')[0].innerHTML})(); ";
                    chromeBrowser.EvaluateScriptAsync(js).ContinueWith(x =>
                    {
                        var response = x.Result;
                        if (response.Success && response.Result != null)
                        {
                            userinfo+= response.Result.ToString().Trim().Split('')[1].Substring(0, 3)+" ";
                        }
                    });

 

相关文章:

  • 2021-10-16
  • 2022-12-23
  • 2021-07-13
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
猜你喜欢
  • 2021-12-09
  • 2022-12-23
  • 2022-02-23
相关资源
相似解决方案