VBA从html表中提取值

时间:2017-12-11 13:40:28

标签: html vba excel-vba excel

我想废弃以下html代码,从“resultsTable”的“td”标签中提取一个值

enter image description here

我尝试在下面运行vba代码,但它不起作用。我收到了

  

运行时错误代码'91'

class MyComponent extends Component {
  state = {
     data: {
       address: ""
     }
   };
render() {
    return(
      <Form onSubmit={this.onSubmit} loading={loading}>
          <MapWithASearchBox />
        <Button primary>Submit</Button>
      </Form>
    )
  }
}

1 个答案:

答案 0 :(得分:0)

您不允许加载页面时间。等待.Busy完成并不意味着页面已加载且页面元素可用。

以下是一种暂停某些相关内容的方法:

trs = tbody.getElementsByTagName("tr")

Do While trs Is Nothing
    DoEvents
    Application.Wait Now + TimeValue("00:00:02")
    trs = tbody.getElementsByTagName("tr")
Loop