So, basically, I'm applying programmatically for jobs with Starbucks, so I don't open an browser. The problem every time is "click" (next) in the application they change the url for the next page, so my code doesn't know where to go. Help please
所以,基本上,我正在以编程方式申请星巴克的工作,所以我不打开浏览器。问题每次都是“点击”(下一步)在应用程序中他们更改下一页的URL,所以我的代码不知道去哪里。请帮助
1 个解决方案
#1
0
You can use this code snippet:
您可以使用以下代码段:
var page = new WebClient().DownloadString(url);
// search for the URL of the link with regular expression (see class Regex)
#1
0
You can use this code snippet:
您可以使用以下代码段:
var page = new WebClient().DownloadString(url);
// search for the URL of the link with regular expression (see class Regex)