1

我是 c# 的新手,我正在尝试用 geckofx 做一些小实验。我可以导航,但是 html 的 DOM 有问题。我不明白为什么这段简单的代码不写链接是在页面上。花了几个小时证明不同的事情,但没有任何效果,有人可以告诉我我错在哪里。

提前感谢您的时间。

对不起我的英语不好,我正在学习它!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Skybound.Gecko;
using System.Diagnostics;

namespace WindowsFormsApplication8
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            String xulPath = Application.StartupPath + "\\xulrunner\\";
            Xpcom.Initialize(xulPath);
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            web.Navigate("http://es.wikipedia.org/wiki/Blog");
            System.Threading.Thread.Sleep(25000);
            Debug.WriteLine("hola");
            GeckoElementCollection links = web.Document.GetElementsByTagName("a");
            foreach (GeckoElement link in links)
            {
                Debug.WriteLine(link.GetAttribute("href"));
            }


        }

        private void web_Click(object sender, EventArgs e)
        {

        }




    }
}
4

1 回答 1

0

解决了,问题是程序在搜索链接之前没有时间加载页面,方法thread.sleep没有给程序时间简单地停止它。

于 2012-09-02T19:14:46.823 回答